1
0
Fork 0
mirror of synced 2024-07-06 06:50:49 +12:00
budibase/packages/server/.vscode/launch.json

35 lines
1.2 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",
"program": "${workspaceFolder}/index.js"
},
{
"type": "node",
"request": "launch",
"name": "Jest All",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["--runInBand"],
"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": "${workspaceFolder}/initialise/initialiseBudibase.js",
"args": ["--datastore=local", "--username=test", "--password=test", "--rootPath=./.data", "--cleanDev"],
"console": "externalTerminal"
}
2019-06-21 19:42:37 +12:00
]
}