diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 51 |
1 files changed, 13 insertions, 38 deletions
diff --git a/tsconfig.json b/tsconfig.json index 075a3d86e..993acf81d 100644 --- a/tsconfig.json +++ b/tsconfig.json | |||
@@ -1,46 +1,21 @@ | |||
1 | { | 1 | { |
2 | "extends": "./tsconfig.base.json", | ||
2 | "compilerOptions": { | 3 | "compilerOptions": { |
3 | "module": "commonjs", | 4 | "outDir": "./dist/", |
4 | "target": "es2015", | ||
5 | "noImplicitAny": false, | ||
6 | "sourceMap": false, | ||
7 | "experimentalDecorators": true, | ||
8 | "emitDecoratorMetadata": true, | ||
9 | "importHelpers": true, | ||
10 | "removeComments": true, | ||
11 | "strictBindCallApply": true, | ||
12 | "esModuleInterop": true, | ||
13 | "forceConsistentCasingInFileNames": true, | ||
14 | "outDir": "./dist", | ||
15 | "lib": [ | ||
16 | "dom", | ||
17 | "es2015", | ||
18 | "es2016", | ||
19 | "es2017", | ||
20 | "es2018", | ||
21 | "es2019" | ||
22 | ], | ||
23 | "typeRoots": [ | ||
24 | "node_modules/@types", | ||
25 | "server/typings" | ||
26 | ], | ||
27 | "baseUrl": "./", | 5 | "baseUrl": "./", |
28 | "paths": { | 6 | "paths": { |
29 | "@server/*": [ "server/*" ], | 7 | "@server/*": [ "server/*" ], |
30 | "@shared/*": [ "shared/*" ] | 8 | "@shared/*": [ "shared/*" ] |
31 | } | 9 | }, |
10 | "typeRoots": [ | ||
11 | "server/typings", | ||
12 | "node_modules/@types" | ||
13 | ] | ||
32 | }, | 14 | }, |
33 | "exclude": [ | 15 | "references": [ |
34 | "server/tools/", | 16 | { "path": "./shared" }, |
35 | "node_modules", | 17 | { "path": "./server" }, |
36 | "dist", | 18 | { "path": "./scripts" } |
37 | "storage", | 19 | ], |
38 | "client", | 20 | "files": [ "server.ts", "server/types/express.d.ts" ] |
39 | "test1", | ||
40 | "test2", | ||
41 | "test3", | ||
42 | "test4", | ||
43 | "test5", | ||
44 | "test6" | ||
45 | ] | ||
46 | } | 21 | } |