-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.33 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"composite": false,
"module": "esnext",
"target": "es6",
"sourceMap": true,
"incremental": true,
"newLine": "LF",
"noEmitHelpers": false,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"declaration": true,
"declarationDir": "dist",
"preserveConstEnums": false,
"pretty": true,
"removeComments": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowUnusedLabels": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"baseUrl": "./src",
"allowJs": false,
"allowSyntheticDefaultImports": false,
"esModuleInterop": true,
"noImplicitUseStrict": false,
"lib": ["es5", "es6", "es7", "esnext", "dom"],
"strictNullChecks": true,
"importHelpers": false,
"alwaysStrict": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"jsx": "react",
"noErrorTruncation": true,
"disableSizeLimit": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"tsBuildInfoFile": "dist/tsbuildinfo"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "src/tests", "src/stories"]
}