-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
42 lines (42 loc) · 914 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
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"alwaysStrict": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": false,
"esModuleInterop": true,
"baseUrl": ".",
"target": "ES2020",
"moduleResolution": "node",
"strict": true,
"noEmitOnError": true,
"resolveJsonModule": true,
"removeComments": true,
"newLine": "LF",
"types": [ "node" ],
"lib": [ "ES2020" ],
"noUnusedLocals": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictFunctionTypes": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"build",
"dist",
"node_modules",
"test",
"webpack.config.js",
"**/*.spec.tsx",
"**/*.spec.ts",
"**/*.stories.tsx"
]
}