41 lines
1016 B
JSON
41 lines
1016 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
/* Path aliases */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@types/*": ["src/types/*"],
|
|
"@config/*": ["src/config/*"],
|
|
"@state/*": ["src/state/*"],
|
|
"@api/*": ["src/api/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@views/*": ["src/views/*"],
|
|
"@layout/*": ["src/layout/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|