-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
30 lines (30 loc) · 818 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
29
30
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"isolatedModules": false,
"jsx": "react-jsx",
"outDir": "dist",
"lib": ["es6", "dom", "es2016", "es2017"],
"module": "esnext",
"moduleResolution": "node",
"target": "es5",
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"sourceMap": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "example", "*.config.js"]
}