aboutsummaryrefslogtreecommitdiffhomepage
path: root/tsconfig.json
blob: cb7937f9967cddab3c16f574db8488f0d28cbc6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "extends": "./tsconfig.base.json",
  "compilerOptions": {
    "outDir": "./dist/",
    "baseUrl": "./",
    "paths": {
      "@server/*": [ "server/*" ],
      "@shared/*": [ "shared/*" ]
    },
    "typeRoots": [
      "server/typings",
      "node_modules/@types"
    ]
  },
  "references": [
    { "path": "./shared" },
    { "path": "./server" },
    { "path": "./scripts" }
  ],
  "files": ["server.ts"]
}