aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tsconfig.json
blob: 2b799749f1cbcd7ee4df8aa8f4115057e773a581 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "extends": "../tsconfig.base.json",
  "compilerOptions": {
    "outDir": "../dist",
    "baseUrl": "../",
    "rootDir": ".",
    "tsBuildInfoFile": "../dist/.tsbuildinfo",
    "paths": {
      "@server/*": [ "server/server/*" ]
    }
  },
  "references": [
    { "path": "../packages/core-utils" },
    { "path": "../packages/ffmpeg" },
    { "path": "../packages/models" },
    { "path": "../packages/node-utils" },
    { "path": "../packages/typescript-utils" }
  ],
  "include": [
    "./**/*.ts"
  ]
}