mono/packages/cache/.vscode/launch.json
2025-01-25 14:37:23 +01:00

25 lines
776 B
JSON

{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Launch Program - Tests:File",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": [
"${workspaceFolder}//**/*.js"
],
"args": [
"test",
"file"
]
}
]
}