aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/types/tsconfig.json
blob: f8e16f6b4fbbed2dca6c5633a4896f6d014cc82f (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"]
}