-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
51 lines (51 loc) · 1.15 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
49
50
51
{
"compilerOptions": {
"baseUrl": "./src",
"rootDir": "src",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": false,
"declaration": true,
"declarationDir": "./lib",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"noEmitHelpers": true,
"lib": [
"dom",
"es2016",
"es2017.object"
],
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"jsx": "react",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"traceResolution": false,
"strict": true,
"strictNullChecks": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"resolveJsonModule": true,
"composite": true,
"skipLibCheck": true,
"declarationMap": true
},
"include": ["src/**/*"],
"exclude": [
"**/*.stories.tsx",
"node_modules",
"dist",
"lib",
"__mocks__",
"**/*.test.ts"
]
}