Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: Anwarul Islam <anwaarulislaam@gmail.com>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"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": [
|
|
"meta.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
],
|
|
"vueCompilerOptions": {
|
|
"jsxTemplates": true,
|
|
"experimentalRfc436": true
|
|
}
|
|
}
|