Files
myprojplanet_vite/tsconfig.json

109 lines
2.0 KiB
JSON
Raw Normal View History

2021-08-31 18:09:59 +02:00
{
2024-02-28 23:56:33 +01:00
"extends": "@quasar/app-webpack/tsconfig-preset",
2021-08-31 18:09:59 +02:00
"include": [
// repeated from base config's "include" setting
"src",
"tests",
2021-09-22 01:14:30 +02:00
"src-pwa",
"public/js",
2021-08-31 18:09:59 +02:00
// these are the eslint-only inclusions
"**/*.config.js" // for *.config.js files
2021-08-31 18:09:59 +02:00
],
"compilerOptions": {
2024-02-06 20:13:06 +01:00
"sourceMap": true,
2022-02-21 13:40:52 +01:00
"moduleResolution": "node",
2021-08-31 18:09:59 +02:00
"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/*"
],
2022-11-10 19:32:56 +01:00
"crypto": [
"node_modules/bcryptjs"
],
2021-08-31 18:09:59 +02:00
}
2021-09-22 01:14:30 +02:00
},
"exclude": [
"node_modules",
"dist",
"build",
"public/js",
"_ALL_SITES",
"__riso.app",
"docs",
"statics",
"upload",
2021-09-22 01:14:30 +02:00
]
}