Remove all demo pages, dialogs, sidebar navigation, and layout components. Create minimal top-bar portal layout with auth-aware navigation, placeholder pages for volunteer registration, dashboard, shifts, profile, artist advance, and login. Add Pinia auth store, axios with Sanctum support, and router guards. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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"
|
|
]
|
|
}
|