2020-11-03 22:34:35 +01:00
|
|
|
{
|
2021-08-21 12:39:49 +02:00
|
|
|
"compilerOptions": {
|
2023-02-28 21:29:09 +02:00
|
|
|
"target": "ESNext",
|
2021-08-21 12:39:49 +02:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2023-02-28 21:29:09 +02:00
|
|
|
"types": ["vite/client"],
|
2021-08-21 12:39:49 +02: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"
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
|
|
|
}
|