1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 01:31:34 +02:00
server/.vscode/launch.json

22 lines
478 B
JSON
Raw Normal View History

2022-09-26 04:42:01 +02:00
{
"version": "0.2.0",
"configurations": [
2022-09-26 12:33:57 +02:00
{
"name": "Launch current file",
"program": "${relativeFile}",
"request": "launch",
2022-09-26 14:29:30 +02:00
"skipFiles": ["<node_internals>/**"],
2022-09-26 12:33:57 +02:00
"type": "node"
},
2022-09-26 04:42:01 +02:00
{
"type": "node",
"request": "launch",
2022-09-26 12:33:57 +02:00
"name": "Bundle",
2022-09-26 14:29:30 +02:00
"skipFiles": ["<node_internals>/**"],
2022-09-26 04:42:01 +02:00
"program": "${workspaceFolder}/src/bundle/start.ts",
2022-09-26 14:29:30 +02:00
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
2022-09-26 04:42:01 +02:00
"preLaunchTask": "tsc: build - tsconfig.json"
}
]
2022-09-26 14:29:30 +02:00
}