-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
47 lines (36 loc) · 1014 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
// Enable decorators
"experimentalDecorators": true,
// Pretty print the javascript
"pretty": true,
// Don't emit on error
"noEmitOnError": true,
// No declarations
"declaration": false,
"module": "esnext",
"moduleResolution": "node",
// Make it strict
"noImplicitAny": true,
"strictNullChecks": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"preserveSymlinks": true,
// Don't fail on type errors in libraries
"skipLibCheck": true,
// Improve compatibility with npm packages
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
// Allow importing JSON files
"resolveJsonModule": true,
"target": "es2019",
"lib": ["esnext"],
"jsx": "react"
},
"include": ["src/**/*.ts", "src/**/*.tsx"]
}