Files
myprojplanet_vite/tsconfig.json

109 lines
2.0 KiB
JSON
Executable File

{
"extends": "@quasar/app-webpack/tsconfig-preset",
"include": [
// repeated from base config's "include" setting
"src",
"tests",
"src-pwa",
"public/js",
// these are the eslint-only inclusions
"**/*.config.js" // for *.config.js files
],
"compilerOptions": {
"sourceMap": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"@components": [
"src/components/index.ts"
],
"@costanti": [
"src/store/Modules/costanti.ts"
],
"@boot": [
"src/boot/*"
],
"@views": [
"src/views/*"
],
"@src/*": [
"src/*"
],
"@/*": [
"src/*"
],
"@css": [
"src/public/css/variables.scss"
],
"@icons": [
"src/public/icons/*"
],
"@images": [
"src/public/images/*"
],
"@maps": [
"src/public/maps/*"
],
"@classes": [
"src/classes/index.ts"
],
"@utils": [
"src/utils/index.ts"
],
"@router": [
"src/router/index.ts"
],
"@validators": [
"src/utils/validators.ts"
],
"@methods": [
"src/utils/methods.ts"
],
"@api": [
"src/store/Api/index.ts"
],
"@api/*": [
"src/store/Api/*"
],
"@paths": [
"src/store/Api/ApiRoutes.ts"
],
"@storemod": [
"src/store/Modules/*"
],
"@store/*": [
"src/store/*"
],
"@modules": [
"src/store/Modules/index.ts"
],
"@model": [
"src/model/index.ts"
],
"@model/*": [
"src/model/*"
],
"model": [
"src/model/index.ts"
],
"enums": [
"src/enums/*"
],
"crypto": [
"node_modules/bcryptjs"
],
}
},
"exclude": [
"node_modules",
"dist",
"build",
"public/js",
"_ALL_SITES",
"__riso.app",
"docs",
"statics",
"upload",
]
}