2023-11-01 18:24:43 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-12-01 16:12:08 +00:00
|
|
|
"target": "es2018",
|
2023-11-10 12:06:40 +03:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2023-11-01 18:24:43 +03: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",
|
2024-02-04 13:12:53 +00:00
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2024-12-01 16:12:08 +00:00
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"sourceMap": true
|
2023-11-01 18:24:43 +03:00
|
|
|
},
|
2023-11-10 12:06:40 +03:00
|
|
|
"include": ["src"]
|
2023-11-01 18:24:43 +03:00
|
|
|
}
|