diff options
Diffstat (limited to 'tsconfig.base.json')
-rw-r--r-- | tsconfig.base.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 000000000..b54d5a556 --- /dev/null +++ b/tsconfig.base.json | |||
@@ -0,0 +1,34 @@ | |||
1 | { | ||
2 | "compilerOptions": { | ||
3 | "module": "commonjs", | ||
4 | "target": "es2015", | ||
5 | "noImplicitAny": false, | ||
6 | "sourceMap": true, | ||
7 | "experimentalDecorators": true, | ||
8 | "emitDecoratorMetadata": true, | ||
9 | "importHelpers": true, | ||
10 | "removeComments": true, | ||
11 | "strictBindCallApply": true, | ||
12 | "esModuleInterop": true, | ||
13 | "forceConsistentCasingInFileNames": true, | ||
14 | "lib": [ | ||
15 | "dom", | ||
16 | "es2015", | ||
17 | "es2016", | ||
18 | "es2017", | ||
19 | "es2018", | ||
20 | "es2019" | ||
21 | ], | ||
22 | "baseUrl": "./", | ||
23 | "paths": { | ||
24 | "@server/*": [ "server/*" ], | ||
25 | "@shared/*": [ "shared/*" ], | ||
26 | "@client/*": [ "client/src/*" ] | ||
27 | }, | ||
28 | "resolveJsonModule": true, | ||
29 | "strict": false, | ||
30 | "skipLibCheck": true, | ||
31 | "composite": true, | ||
32 | "declarationMap": true | ||
33 | } | ||
34 | } | ||