2023-03-03 16:24:15 +11:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2023-03-19 15:17:58 +11:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2023-03-03 16:24:15 +11:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2023-03-19 15:17:58 +11:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"incremental": true,
|
|
|
|
"baseUrl": "src"
|
2023-03-03 16:24:15 +11:00
|
|
|
},
|
2023-03-19 15:17:58 +11:00
|
|
|
"include": ["src/**.tsx", "src/**.ts"],
|
|
|
|
"exclude": ["node_modules", "build", "public"]
|
2023-03-03 16:24:15 +11:00
|
|
|
}
|