58 lines
1.1 KiB
JSON
58 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": 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",
|
|
"vite-plugin-pages/client",
|
|
"vite-plugin-vue-layouts/client",
|
|
"vite-plugin-pwa/client"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue"
|
|
]
|
|
}
|