2022-09-26 04:42:01 +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": [
|
2022-09-26 12:33:57 +02:00
|
|
|
{
|
|
|
|
"name": "Launch current file",
|
|
|
|
"program": "${relativeFile}",
|
|
|
|
"request": "launch",
|
|
|
|
"skipFiles": [
|
|
|
|
"<node_internals>/**"
|
|
|
|
],
|
|
|
|
"type": "node"
|
|
|
|
},
|
2022-09-26 04:42:01 +02:00
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2022-09-26 12:33:57 +02:00
|
|
|
"name": "Bundle",
|
2022-09-26 04:42:01 +02:00
|
|
|
"skipFiles": [
|
|
|
|
"<node_internals>/**"
|
|
|
|
],
|
|
|
|
"program": "${workspaceFolder}/src/bundle/start.ts",
|
|
|
|
"outFiles": [ "${workspaceFolder}/dist/**/*.js" ],
|
|
|
|
"preLaunchTask": "tsc: build - tsconfig.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|