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
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|