-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 683 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 683 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
{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"moduleResolution": "node",
"lib": ["esnext"],
"downlevelIteration": true,
"alwaysStrict": true,
"sourceMap": true,
"declaration": true,
"removeComments": false,
"strict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitAny": false,
"noImplicitThis": false,
"noEmit": true,
"experimentalDecorators": true,
"useDefineForClassFields": true,
"jsx": "react",
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": ["__tests__"]
}