-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 996 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compileOnSave": true,
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": ["./node_modules/@types/*", "./src/*"], // to avoid looking into node_modules/@types/d3-selection-multi/node_modules/@types/d3-selection/index.d.ts
"src/*": ["./src/*"],
"webpack": ["./node_modules/webpack"] // together with es-interop
},
"moduleResolution": "Node",
"module": "ESNext",
"target": "ESNext",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"incremental": true,
"importHelpers": true,
"noImplicitAny": false,
"esModuleInterop": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"lib": ["DOM", "ESNext"],
"typeRoots": ["src/*.d.ts", "node_modules/@types"]
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"include": [".eslintrc.js", ".stylelintrc.js", "**/*"],
"exclude": ["node_modules", "dist"]
}