Windows 플랫폼 추가, VS Code 개발 환경 설정 추가

This commit is contained in:
2026-06-28 18:40:58 +09:00
parent aa55a42988
commit d60832120e
4 changed files with 92 additions and 5 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "앱 실행",
"type": "shell",
"command": "npm start",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "앱 실행 (디버그)",
"type": "shell",
"command": "npm run debug",
"group": "build",
"presentation": {
"reveal": "always",
"panel": "shared"
}
}
]
}