mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 19:02:33 +01:00
36 lines
911 B
JSON
36 lines
911 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"sourceMaps": true,
|
|
"name": "ts-node",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"args": [
|
|
"${workspaceFolder}/src/start.ts"
|
|
],
|
|
"runtimeArgs": [
|
|
"-r",
|
|
"ts-node/register"
|
|
],
|
|
"protocol": "inspector",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"env": {
|
|
"TS_NODE_PROJECT": "${workspaceFolder}/tsnode.tsconfig.json",
|
|
"TS_NODE_COMPILER": "typescript-cached-transpile"
|
|
},
|
|
"resolveSourceMapLocations": null, /* allow breakpoints in modules other than bundle */
|
|
},
|
|
{
|
|
"sourceMaps": true,
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Server",
|
|
"program": "${workspaceFolder}/dist/bundle/src/start.js",
|
|
"preLaunchTask": "tsc: build - tsconfig.json",
|
|
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
|
|
"envFile": "${workspaceFolder}/.env",
|
|
}
|
|
]
|
|
}
|