-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 846 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
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"lib": ["ESNext", "dom"],
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"sourceMap": true,
"target": "es5",
"jsx": "react-jsx",
"baseUrl": ".",
"skipLibCheck": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src", "babel.config.js"],
"exclude": ["**/*.test.ts", "**/*.test.tsx", "node_modules", "vendor", "public"],
"compileOnSave": false
}