-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.02 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
{
"display": "Node 14",
"compilerOptions": {
"strict": true, // also sets "alwaysStrict": true
"noImplicitReturns": true,
"outDir": "./build/",
"sourceMap": true,
"jsx": "react",
"lib": ["esnext", "dom"],
"module": "commonjs",
"target": "es5",
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"noImplicitAny": false,
"downlevelIteration": true,
"importHelpers": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"components/*": ["./src/components/*"]
},
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
// handled by ESLint (shows warning)
"noUnusedLocals": false,
"noUnusedParameters": false
},
"include": ["./src/**/*"],
"exclude": ["**/*.spec.*"],
"awesomeTypescriptLoaderOptions": {
"reportFiles": ["./src/**/*.{ts,tsx}"],
"ignoreDiagnostics": [1005 /* expected semicolon */],
"useCache": true
}
}