26 lines
675 B
JSON
26 lines
675 B
JSON
{
|
|
"rootDir": "src",
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "src",
|
|
"noImplicitAny": false,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src", "src/client"],
|
|
"exclude": ["src/server", "./node_modules/**/*"]
|
|
}
|