- Add Sanctum auth flow (store, composables, login, axios interceptors) - Add dashboard, organisation list/detail, events CRUD dialogs - Wire router guards, navigation, organisation switcher in layout - Replace Vuexy @db types in NavSearchBar; add @iconify/types; themeConfig title typing - Vuetify settings.scss + resolve configFile via fileURLToPath; drop dead path aliases - Root index redirects to dashboard; fix events table route name - API: DevSeeder + DatabaseSeeder updates; docs TEST_SCENARIO; corporate identity assets Made-with: Cursor
73 lines
1.4 KiB
JSON
73 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "Fragment",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@themeConfig": [
|
|
"./themeConfig.ts"
|
|
],
|
|
"@layouts/*": [
|
|
"./src/@layouts/*"
|
|
],
|
|
"@layouts": [
|
|
"./src/@layouts"
|
|
],
|
|
"@core/*": [
|
|
"./src/@core/*"
|
|
],
|
|
"@core": [
|
|
"./src/@core"
|
|
],
|
|
"@images/*": [
|
|
"./src/assets/images/*"
|
|
],
|
|
"@styles/*": [
|
|
"./src/assets/styles/*"
|
|
],
|
|
"@validators": [
|
|
"./src/@core/utils/validators"
|
|
]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
],
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"vite/client",
|
|
"unplugin-vue-router/client",
|
|
"vite-plugin-vue-meta-layouts/client"
|
|
]
|
|
},
|
|
"include": [
|
|
"./typed-router.d.ts",
|
|
"./vite.config.*",
|
|
"./env.d.ts",
|
|
"./shims.d.ts",
|
|
"./src/**/*",
|
|
"./src/**/*.vue",
|
|
"./themeConfig.ts",
|
|
"./auto-imports.d.ts",
|
|
"./components.d.ts"
|
|
],
|
|
"exclude": [
|
|
"./dist",
|
|
"./node_modules"
|
|
]
|
|
}
|