-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
37 lines (34 loc) · 893 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
{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"target": "ES5",
"jsx": "react-jsx",
"lib": ["es5", "es6", "dom", "dom.iterable", "esnext"],
/* Bundler mode */
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true,
"checkJs": false,
"allowSyntheticDefaultImports": false,
"noImplicitAny": false,
"stripInternal": true,
"useDefineForClassFields": true,
"skipLibCheck": true,
/* Linting */
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": false,
"resolveJsonModule": true,
"allowJs": true,
"esModuleInterop": false,
"strict": false,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"exclude": ["node_modules", "./config"],
"include": ["./src"]
}