mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
969 B
29 lines
969 B
{ |
|
"version": "0.2.0", |
|
"configurations": [ |
|
// To debug, make sure a *.spec.ts file is active in the editor, then run a configuration |
|
{ |
|
"type": "node", |
|
"request": "launch", |
|
"name": "Debug Active Spec", |
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ava", |
|
"runtimeArgs": ["debug", "--break", "--serial", "${file}"], |
|
"port": 9229, |
|
"outputCapture": "std", |
|
"skipFiles": ["<node_internals>/**/*.js"], |
|
"preLaunchTask": "npm: build" |
|
// "smartStep": true |
|
}, |
|
{ |
|
// Use this one if you're already running `yarn watch` |
|
"type": "node", |
|
"request": "launch", |
|
"name": "Debug Active Spec (no build)", |
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ava", |
|
"runtimeArgs": ["debug", "--break", "--serial", "${file}"], |
|
"port": 9229, |
|
"outputCapture": "std", |
|
"skipFiles": ["<node_internals>/**/*.js"] |
|
// "smartStep": true |
|
}] |
|
}
|
|
|