aboutsummaryrefslogtreecommitdiffhomepage
path: root/types/tsconfig.json
blob: 51468388676d38114e055c8931126bf6054c4c98 (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/",
    "tsBuildInfoFile": "./dist/tsconfig.server.types.tsbuildinfo",
    "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"]
}