-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.dev.json
More file actions
31 lines (31 loc) · 800 Bytes
/
tsconfig.dev.json
File metadata and controls
31 lines (31 loc) · 800 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
{
"compileOnSave": true,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": "./src",
"checkJs": false,
"downlevelIteration": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["dom", "es2015", "es2016", "es2017"],
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"outDir": "./dist",
"plugins": [],
"preserveConstEnums": true,
"removeComments": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "es5"
},
"typeRoots": ["src", "node_modules/@types"],
"include": ["src"],
"exclude": ["node_modules"]
}