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