This repository has been archived on 2025-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
bolderjara-serviss/frontend/tsconfig.json

29 lines
735 B
JSON
Raw Normal View History

2025-07-02 14:19:55 +03:00
{
2025-07-02 14:51:00 +03:00
"include": ["**/*.ts", "**/*.tsx"],
"compilerOptions": {
"target": "ES2022",
"jsx": "react-jsx",
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
2025-07-02 14:19:55 +03:00
2025-07-02 14:51:00 +03:00
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
2025-07-02 14:19:55 +03:00
2025-07-02 14:51:00 +03:00
/* Linting */
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
2025-07-02 14:19:55 +03:00
}
}