aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.settings.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.settings.json')
-rw-r--r--tsconfig.settings.json16
1 files changed, 6 insertions, 10 deletions
diff --git a/tsconfig.settings.json b/tsconfig.settings.json
index ccd0927ab..eb2207533 100644
--- a/tsconfig.settings.json
+++ b/tsconfig.settings.json
@@ -3,22 +3,18 @@
3 "baseUrl": ".", 3 "baseUrl": ".",
4 "target": "esnext", 4 "target": "esnext",
5 "module": "commonjs", 5 "module": "commonjs",
6 "lib": [ 6 "lib": ["es2015", "es2017", "dom"],
7 "es2015",
8 "es2017",
9 "dom"
10 ],
11 "jsx": "react", 7 "jsx": "react",
12 "sourceMap": true, 8 "sourceMap": true,
13 "strict": true, 9 "strict": true,
10 "noImplicitAny": false,
14 "allowSyntheticDefaultImports": true, 11 "allowSyntheticDefaultImports": true,
15 "experimentalDecorators": true, 12 "experimentalDecorators": true,
16 "composite": true, 13 "composite": true,
17 "esModuleInterop": true, 14 "esModuleInterop": true,
18 "typeRoots": ["packages/typings/types", "node_modules/@types"], 15 "forceConsistentCasingInFileNames": true,
19 "paths": { 16 "importHelpers": true,
20 "@types/*": ["packages/typings/types/*.d.ts"], 17 "removeComments": true,
21 "*": ["packages/typings/types/*.d.ts"] 18 "typeRoots": ["node_modules/@types"]
22 }
23 } 19 }
24} 20}