-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 736 Bytes
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 736 Bytes
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
{
"compilerOptions": {
"incremental": true,
"target": "ES2015",
"module": "commonjs",
"allowJs": false,
"jsx": "react",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": "src",
"lib": [
"DOM",
"ESNext"
],
"outDir": "dist",
"downlevelIteration": true,
"isolatedModules": true,
"strict": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"node_modules",
"dist",
"example",
"src/**/*.test.ts",
"src/**/*.test.tsx"
],
"include": [
"src/**/*"
]
}