-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 796 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 796 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"lib": ["es2015", "es5", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"outDir": "dist",
"preserveSymlinks": true,
"preserveWatchOutput": true,
"pretty": false,
"rootDir": "src",
"sourceMap": true,
"strictNullChecks": true,
"target": "es5",
"types": ["node"]
},
"exclude": ["node_modules", "dist", "src/stories"],
"include": ["src"]
}