-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
34 lines (32 loc) · 1 KB
/
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
34
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"incremental": true,
// do not transpile stuff like classes, async/await, ...
"target": "ES2015",
// leave imports as they are
"module": "ESNext",
// resolve modules as you would expect
"moduleResolution": "node",
// produce a source map
"sourceMap": true,
"lib": ["dom", "esnext"],
"isolatedModules": false,
"experimentalDecorators": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": true,
// "strictFunctionTypes": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"rootDir": "./",
"baseUrl": "./src",
"jsx": "preserve",
// Advanced
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"exclude": [ "build", "src/public", "scripts", "webpack.*", "webpack", "postcss.config.js", "babel.config.js", "browser-sync.js"],
"compileOnSave": false
}