34 lines
848 B
JSON
34 lines
848 B
JSON
{
|
|
// Launch configuration for starting the project in VSCode
|
|
// This will install dependencies before starting the dev server
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node-terminal",
|
|
"name": "Start with API propxy to seedheads.de (Install Deps)",
|
|
"request": "launch",
|
|
"command": "npm run start:seedheads",
|
|
"preLaunchTask": "npm: install",
|
|
"env": {
|
|
"NODE_ENV": "development"
|
|
},
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
]
|
|
},{
|
|
"name": "Start",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "npm run start",
|
|
"env": {
|
|
"NODE_ENV": "development"
|
|
},
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
]
|
|
}
|
|
]
|
|
}
|