Set up Nuxt config and routing shell

Agent-Logs-Url: https://github.com/hykilpikonna/corner/sessions/5ad4b623-9a6b-480e-80fa-d83eee774f01

Co-authored-by: hykilpikonna <22280294+hykilpikonna@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-23 20:56:00 +00:00
committed by GitHub
parent 1f385afee0
commit 12c0dc46bf
25 changed files with 501 additions and 572 deletions
+4 -39
View File
@@ -1,41 +1,6 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": false,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
"emitDecoratorMetadata": true,
"allowJs": true,
"resolveJsonModule": true
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"types": ["@types/jquery", "@types/jqueryui"]
}
}