chore(debugger): clean scripts (#1029)

This commit is contained in:
Junyi 2022-11-03 21:45:45 +08:00 committed by GitHub
parent def0f642d7
commit bbc7f67b15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
.vscode/launch.json vendored
View File

@ -8,14 +8,12 @@
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"name": "Debug Server", "name": "Debug Server",
"cmd": "${workspaceRoot}",
"runtimeArgs": [ "runtimeArgs": [
"-r", "dotenv/config", "-r", "dotenv/config",
"-r", "tsconfig-paths/register", "-r", "tsconfig-paths/register",
"-r", "ts-node/register" "-r", "ts-node/register"
], ],
"args": ["${workspaceRoot}/packages/app/server/src/index.ts", "start"], "args": ["${workspaceRoot}/packages/app/server/src/index.ts", "start"],
"port": 9229,
"skipFiles": [ "skipFiles": [
"<node_internals>/**" "<node_internals>/**"
], ],
@ -32,10 +30,8 @@
"--inspect-brk", "--inspect-brk",
"test", "test",
"--runInBand", "--runInBand",
// could be any single file path to debug "${fileBasenameNoExtension}"
"${workspaceFolder}/packages/plugins/workflow/src/__tests__/instructions/parallel.test.ts"
], ],
"port": 9229,
"skipFiles": [ "skipFiles": [
"<node_internals>/**" "<node_internals>/**"
], ],