-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
28 lines (28 loc) · 962 Bytes
/
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
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["es6", "es2015", "dom", "dom.iterable", "es5"],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"suppressExcessPropertyErrors": true,
"noUnusedLocals": false,
"strictNullChecks": true,
"strict": true,
"pretty": true,
"target": "es5",
"outDir": "./dist"
},
"include": ["src"],
"exclude": ["node_modules", "build", "scripts", "public", "acceptance-tests", "webpack", "jest", "razzle.config.js"],
"types": ["typePatches", "node", "webpack-env"]
}