2023-06-06 08:52:50 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-12-12 18:37:41 +00:00
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"types": ["vite/client"],
|
2023-06-06 08:52:50 +00: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,
|
|
|
|
"jsx": "react-jsx"
|
|
|
|
},
|
2023-12-12 18:37:41 +00:00
|
|
|
"include": ["src"]
|
2023-06-06 08:52:50 +00:00
|
|
|
}
|