2023-11-23 11:54:24 +03:00
|
|
|
{
|
2023-12-19 22:06:18 +06:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2024-02-14 16:15:50 +03:00
|
|
|
"downlevelIteration": true,
|
2023-12-19 22:06:18 +06:00
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": ["src"]
|
2023-11-23 11:54:24 +03:00
|
|
|
}
|