43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
|
||
|
|
/* Bundler mode */
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
|
||
|
|
/* Linting */
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"paths": {
|
||
|
|
"~/*": ["./src/*"],
|
||
|
|
"@composables/*": ["./src/composables/*"],
|
||
|
|
"@components/*": ["./src/components/*"],
|
||
|
|
"@helpers/*": ["./src/helpers/*"],
|
||
|
|
"@modules/*": ["./src/modules/*"],
|
||
|
|
"@workers/*": ["./src/workers/*"],
|
||
|
|
"@functional/*": ["./src/helpers/functional/*"]
|
||
|
|
},
|
||
|
|
"types": [
|
||
|
|
"vite/client",
|
||
|
|
"unplugin-icons/types/vue"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
||
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
||
|
|
"vueCompilerOptions": {
|
||
|
|
"jsxTemplates": true,
|
||
|
|
"experimentalRfc436": true
|
||
|
|
}
|
||
|
|
}
|