1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00
server/api/.vscode/launch.json

29 lines
890 B
JSON
Raw Normal View History

2020-11-28 19:31:04 +01: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-01-30 19:58:15 +01:00
"name": "Launch Server",
2021-05-07 20:03:24 +02:00
"program": "${workspaceFolder}/dist/start.js",
2021-01-30 19:58:15 +01:00
"preLaunchTask": "tsc: build - tsconfig.json",
2021-05-07 20:03:24 +02:00
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"envFile": "${workspaceFolder}/.env"
2021-01-30 19:58:15 +01:00
},
2020-11-28 19:31:04 +01:00
{
"name": "Debug current file",
"program": "${file}",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
2021-01-30 19:58:15 +01:00
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"],
2021-02-23 22:10:01 +01:00
"preLaunchTask": "tsc: build - tsconfig.json",
2021-01-30 19:58:15 +01:00
"type": "node",
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"]
2020-11-28 19:31:04 +01:00
}
]
}