aboutsummaryrefslogtreecommitdiffhomepage
path: root/types/tsconfig.json
blob: 8f09c4a831f4adb1d68e642d32a8977363701391 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "extends": "../tsconfig.base.json",
  "compilerOptions": {
    "stripInternal": true,
    "removeComments": false,
    "emitDeclarationOnly": true,
    "outDir": "./dist/",
    "baseUrl": "./src/",
    "rootDir": "./src/",
    "paths": {
      "@server/*": [ "../../server/*" ],
      "@shared/*": [ "../../shared/*" ],
      "@client/*": [ "../../client/src/*" ],
    }
  },
  "references": [
    { "path": "../shared/tsconfig.types.json" },
    { "path": "../server/tsconfig.types.json" },
    { "path": "./src/client/tsconfig.json" }
  ],
  "files": ["./src/index.ts"],
}