1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +12:00
budibase/packages/server/.vscode/launch.json

48 lines
1.5 KiB
JSON
Raw Normal View History

2019-06-21 19:42:37 +12:00
{
// 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": [
2019-07-13 21:35:57 +12:00
{
"type": "node",
"request": "launch",
"name": "Start Server",
2020-05-12 01:50:15 +12:00
"program": "${workspaceFolder}/src/index.js"
2019-07-13 21:35:57 +12:00
},
{
"type": "node",
"request": "launch",
"name": "Jest App Server",
2019-07-13 21:35:57 +12:00
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["apps", "--runInBand"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
}
},
{
"type": "node",
"request": "launch",
"name": "Jest Builder",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["builder", "--runInBand"],
2019-07-13 21:35:57 +12:00
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest",
2019-06-21 19:42:37 +12:00
}
2019-07-13 21:35:57 +12:00
},
{
"type": "node",
"request": "launch",
"name": "Initialise Budibase",
"program": "yarn",
"args": ["run", "initialise"],
2019-07-13 21:35:57 +12:00
"console": "externalTerminal"
}
2019-06-21 19:42:37 +12:00
]
}