aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r--client/tsconfig.json33
1 files changed, 10 insertions, 23 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json
index 66c7bb444..a6c016bf3 100644
--- a/client/tsconfig.json
+++ b/client/tsconfig.json
@@ -1,32 +1,19 @@
1{ 1{
2 "compileOnSave": false,
2 "compilerOptions": { 3 "compilerOptions": {
3 "target": "es5", 4 "outDir": "./dist/out-tsc",
4 "module": "commonjs", 5 "sourceMap": true,
6 "declaration": false,
5 "moduleResolution": "node", 7 "moduleResolution": "node",
6 "emitDecoratorMetadata": true, 8 "emitDecoratorMetadata": true,
7 "experimentalDecorators": true, 9 "experimentalDecorators": true,
8 "allowSyntheticDefaultImports": true, 10 "target": "es5",
9 "sourceMap": true, 11 "typeRoots": [
10 "noEmitHelpers": true, 12 "node_modules/@types"
11 "importHelpers": true,
12 "strictNullChecks": false,
13 "baseUrl": "./src",
14 "paths": [
15 ], 13 ],
16 "lib": [ 14 "lib": [
17 "dom", 15 "es2017",
18 "es6" 16 "dom"
19 ] 17 ]
20 }, 18 }
21 "exclude": [
22 "node_modules",
23 "dist"
24 ],
25 "awesomeTypescriptLoaderOptions": {
26 "forkChecker": true,
27 "useWebpackText": true
28 },
29 "compileOnSave": false,
30 "buildOnSave": false,
31 "atom": { "rewriteTsconfig": false }
32} 19}