29 lines
521 B
JSON
29 lines
521 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
]
|
|
}
|