-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 845 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 845 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
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"lib": ["es2017", "es7", "es6", "es5", "dom"],
"allowJs": false,
"jsx": "react",
"declaration": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "src",
"noEmit": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
},
"exclude": [
"node_modules",
"dist",
]
}