46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"eslint.config.js",
|
|
"prettier.config.js",
|
|
"vite.config.js"
|
|
],
|
|
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client"],
|
|
"allowJs": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": false,
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@ui/*": ["./src/components/ui/*"],
|
|
"@form/*": ["./src/components/form/*"],
|
|
"@hooks/*": ["./src/hooks/*"],
|
|
"@lib/*": ["./src/lib/*"],
|
|
"@paraglide/*": ["./src/paraglide/*"],
|
|
"@service/*": ["./src/service/*"],
|
|
"@utils/*": ["./src/utils/*"],
|
|
"@root/*": ["./*"]
|
|
}
|
|
}
|
|
}
|