nocobase/.vscode/launch.json

40 lines
923 B
JSON
Raw Normal View History

2022-06-06 15:01:37 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Server",
"runtimeArgs": [
"-r", "dotenv/config",
"-r", "tsconfig-paths/register",
"-r", "ts-node/register"
],
"args": ["${workspaceRoot}/packages/app/server/src/index.ts", "start"],
"skipFiles": [
"<node_internals>/**"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
2022-06-06 15:01:37 +00:00
{
"type": "node",
"request": "launch",
"name": "Debug Jest Tests",
"runtimeExecutable": "yarn",
"runtimeArgs": [
"run",
"--inspect-brk",
"test",
"--runInBand",
2022-11-03 13:45:45 +00:00
"${fileBasenameNoExtension}"
],
"skipFiles": [
"<node_internals>/**"
],
2022-06-06 15:01:37 +00:00
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}