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

21 lines
694 B
JSON
Raw Normal View History

2021-08-13 22:57:46 +02: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",
"name": "Launch server bundle",
"program": "${workspaceFolder}/dist/start.js",
2021-09-19 18:45:09 +02:00
"runtimeArgs": ["-r", "./tsconfig-paths-bootstrap.js"],
2021-08-13 22:57:46 +02:00
"preLaunchTask": "tsc: build - tsconfig.json",
2021-09-19 18:45:09 +02:00
"outFiles": ["${workspaceFolder}/dist/**/*.js", "${workspaceFolder}/node_modules/@fosscord/**/*.js"],
"envFile": "${workspaceFolder}/.env",
"outDir": "${workspaceFolder}/dist"
2021-08-13 22:57:46 +02:00
}
]
}