mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-05 10:22:31 +01:00
22 lines
478 B
JSON
22 lines
478 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch current file",
|
|
"program": "${relativeFile}",
|
|
"request": "launch",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"type": "node"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Bundle",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"program": "${workspaceFolder}/src/bundle/start.ts",
|
|
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
|
|
"preLaunchTask": "tsc: build - tsconfig.json"
|
|
}
|
|
]
|
|
}
|