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