This repository has been archived on 2026-01-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2025-07-03 14:01:40 +03:00
|
|
|
{
|
2025-07-04 19:11:47 +03:00
|
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"types": ["vite/client"],
|
2025-07-03 14:01:40 +03:00
|
|
|
|
2025-07-04 19:11:47 +03:00
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"noEmit": true,
|
2025-07-03 14:01:40 +03:00
|
|
|
|
2025-07-04 19:11:47 +03:00
|
|
|
/* Linting */
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
|
}
|
2025-07-03 14:01:40 +03:00
|
|
|
}
|
|
|
|
|
}
|