2024-02-27 17:58:08 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-07-09 15:17:35 +07:00
|
|
|
"target": "ES2018",
|
2024-02-27 17:58:08 +01:00
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"dom.iterable",
|
|
|
|
|
"esnext"
|
|
|
|
|
],
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"module": "esnext",
|
2026-07-09 14:46:00 +07:00
|
|
|
"moduleResolution": "bundler",
|
2026-07-09 15:17:35 +07:00
|
|
|
"types": ["node"],
|
2024-02-27 17:58:08 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx"
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src"
|
|
|
|
|
]
|
|
|
|
|
}
|