2022-12-02 14:03:29 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2023-05-18 11:07:47 +03:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2022-12-02 14:03:29 +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,
|
2023-06-04 12:23:09 +03:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/modules/*"],
|
|
|
|
"~/*": ["src/*"],
|
|
|
|
}
|
2022-12-02 14:03:29 +03:00
|
|
|
},
|
2023-06-04 12:23:09 +03:00
|
|
|
"include": ["src/**/*"]
|
2022-12-02 14:03:29 +03:00
|
|
|
}
|