vscode 설정 변경 및 환경 설정 변경

This commit is contained in:
2025-12-15 07:50:28 +09:00
parent feb795ea91
commit 181c0b2a10
7 changed files with 532 additions and 8 deletions

65
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,65 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Backend: Install",
"type": "npm",
"script": "install",
"path": "backend",
"problemMatcher": []
},
{
"label": "Backend: Dev",
"type": "npm",
"script": "start:dev",
"path": "backend",
"isBackground": true,
"problemMatcher": {
"pattern": {
"regexp": "^(.*)$"
},
"background": {
"activeOnStart": true,
"beginsPattern": "Starting compilation",
"endsPattern": "Nest application successfully started"
}
}
},
{
"label": "Frontend: Install",
"type": "npm",
"script": "install",
"path": "frontend",
"problemMatcher": []
},
{
"label": "Frontend: Dev",
"type": "npm",
"script": "dev",
"path": "frontend",
"isBackground": true,
"problemMatcher": {
"pattern": {
"regexp": "^(.*)$"
},
"background": {
"activeOnStart": true,
"beginsPattern": "Starting",
"endsPattern": "Ready"
}
}
},
{
"label": "Full Stack: Dev",
"dependsOn": ["Backend: Dev", "Frontend: Dev"],
"dependsOrder": "parallel",
"problemMatcher": []
},
{
"label": "Install All",
"dependsOn": ["Backend: Install", "Frontend: Install"],
"dependsOrder": "parallel",
"problemMatcher": []
}
]
}