Move VSCode configuration to workspace root

This commit is contained in:
beatz174-bit
2025-11-21 15:49:45 +10:00
parent 16c0ee8ac8
commit f8527573fb
3 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -6,7 +6,7 @@
"type": "pwa-chrome", "type": "pwa-chrome",
"request": "launch", "request": "launch",
"url": "http://localhost:5173/", "url": "http://localhost:5173/",
"webRoot": "${workspaceFolder}/src", "webRoot": "${workspaceFolder}/app/src",
"preLaunchTask": "npm: dev server" "preLaunchTask": "npm: dev server"
}, },
{ {
@@ -14,7 +14,7 @@
"type": "pwa-chrome", "type": "pwa-chrome",
"request": "launch", "request": "launch",
"url": "http://localhost:4173/", "url": "http://localhost:4173/",
"webRoot": "${workspaceFolder}/src", "webRoot": "${workspaceFolder}/app/src",
"preLaunchTask": "npm: preview server" "preLaunchTask": "npm: preview server"
} }
] ]
+4 -4
View File
@@ -5,9 +5,9 @@
"label": "npm: dev server", "label": "npm: dev server",
"type": "npm", "type": "npm",
"script": "dev", "script": "dev",
"path": ".", "path": "app",
"options": { "options": {
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}/app"
}, },
"problemMatcher": { "problemMatcher": {
"owner": "vite-dev", "owner": "vite-dev",
@@ -31,9 +31,9 @@
"label": "npm: preview server", "label": "npm: preview server",
"type": "npm", "type": "npm",
"script": "preview", "script": "preview",
"path": ".", "path": "app",
"options": { "options": {
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}/app"
}, },
"problemMatcher": { "problemMatcher": {
"owner": "vite-preview", "owner": "vite-preview",
+1
View File
@@ -63,6 +63,7 @@ Codex must always generate files within this structure:
docker-compose.yml docker-compose.yml
vite.config.ts vite.config.ts
AGENTS.md AGENTS.md
/.vscode (workspace-level editor settings and launch/task config)
Codex must not introduce alternative or conflicting structures. Codex must not introduce alternative or conflicting structures.