Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
fix: fixes debug scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Enngage committed Aug 4, 2021
1 parent aeea968 commit 601b1d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,47 +9,47 @@
"request": "launch",
"name": "Test backup",
"program": "${workspaceFolder}\\lib\\node\\cli\\app.ts",
"preLaunchTask": "npm: build:all",
"preLaunchTask": "npm: build:cjs",
"sourceMaps": true,
"smartStep": true,
"args": [
"--config", "./output/backup-config.json",
],
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"${workspaceFolder}/_commonjs/**/*.js"
"${workspaceFolder}/dist/cjs/lib/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Test clean",
"program": "${workspaceFolder}\\lib\\node\\cli\\app.ts",
"preLaunchTask": "npm: build:all",
"preLaunchTask": "npm: build:cjs",
"sourceMaps": true,
"smartStep": true,
"args": [
"--config", "./output/clean-config.json",
],
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"${workspaceFolder}/_commonjs/**/*.js"
"${workspaceFolder}/dist/cjs/lib/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Test restore",
"program": "${workspaceFolder}\\lib\\node\\cli\\app.ts",
"preLaunchTask": "npm: build:all",
"preLaunchTask": "npm: build:cjs",
"sourceMaps": true,
"smartStep": true,
"args": [
"--config", "./output/restore-config.json",
],
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"${workspaceFolder}/_commonjs/**/*.js"
"${workspaceFolder}/dist/cjs/lib/**/*.js"
]
}
]
Expand Down

0 comments on commit 601b1d5

Please sign in to comment.