-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
42 lines (42 loc) · 1 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
{
"compilerOptions": {
"types": [
"node",
"lodash",
"enzyme",
"react",
"prop-types",
"jest",
"react-router",
"text-encoding",
"react-dnd",
"react-dnd-html5-backend"
],
"target": "es6",
"module": "es2015",
"moduleResolution": "node",
"lib": ["es6", "es2017", "dom", "webworker"],
"skipLibCheck": true,
"isolatedModules": false,
"esModuleInterop": true,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": false,
"noImplicitUseStrict": false,
"noUnusedParameters": true,
"noUnusedLocals": true,
"removeComments": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"checkJs": false,
"sourceMap": true,
"baseUrl": "./",
"rootDir": "./",
"outDir": "./dist"
},
"exclude": ["assets", "build", "dist", "node_modules"]
}