This commit is contained in:
SebClem 2024-07-12 14:37:34 +02:00
parent 9272bf99c2
commit 73a0160e77
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50
2 changed files with 15 additions and 17 deletions

View File

@ -12,9 +12,7 @@
"request": "launch", "request": "launch",
"restart": true, "restart": true,
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/nodemon", "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/nodemon",
"skipFiles": [ "skipFiles": ["<node_internals>/**"],
"<node_internals>/**"
],
"type": "node", "type": "node",
"preLaunchTask": "npm: build:watch" "preLaunchTask": "npm: build:watch"
} }

View File

@ -1,14 +1,14 @@
{ {
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"type": "npm", "type": "npm",
"script": "build:watch", "script": "build:watch",
"group": "build", "group": "build",
"label": "npm: build:watch", "label": "npm: build:watch",
"detail": "tsc -w", "detail": "tsc -w",
"isBackground": true, "isBackground": true,
"problemMatcher": "$tsc-watch" "problemMatcher": "$tsc-watch"
} }
] ]
} }