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

Commit

Permalink
feat: adds debug profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Enngage committed Feb 10, 2020
1 parent e542b7d commit 5a97461
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
// 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": "Test backup",
"program": "${workspaceFolder}\\src\\cli\\app.ts",
"preLaunchTask": "npm: build:all",
"sourceMaps": true,
"smartStep": true,
"args": [
"--config", "./output/backup-config.json",
],
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"${workspaceFolder}/_commonjs/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Test clean",
"program": "${workspaceFolder}\\src\\cli\\app.ts",
"preLaunchTask": "npm: build:all",
"sourceMaps": true,
"smartStep": true,
"args": [
"--config", "./output/clean-config.json",
],
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"${workspaceFolder}/_commonjs/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Test resotre",
"program": "${workspaceFolder}\\src\\cli\\app.ts",
"preLaunchTask": "npm: build:all",
"sourceMaps": true,
"smartStep": true,
"args": [
"--config", "./output/restore-config.json",
],
"internalConsoleOptions": "openOnSessionStart",
"outFiles": [
"${workspaceFolder}/_commonjs/**/*.js"
]
}
]
}

0 comments on commit 5a97461

Please sign in to comment.