1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-06 19:02:33 +01:00
server/bundle/.vscode/launch.json

19 lines
546 B
JSON
Raw Normal View History

2021-08-13 22:57:46 +02:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"sourceMaps": true,
"type": "node",
"request": "launch",
2021-10-10 11:02:25 +02:00
"name": "Launch Server",
"program": "${workspaceFolder}/dist/bundle/src/start.js",
2021-08-13 22:57:46 +02:00
"preLaunchTask": "tsc: build - tsconfig.json",
2021-10-10 11:02:25 +02:00
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"envFile": "${workspaceFolder}/.env"
2021-08-13 22:57:46 +02:00
}
]
}