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

28 lines
849 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",
"program": "${workspaceFolder}/dist/index.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
},
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
}
]
}