1
0
Fork 0
mirror of synced 2024-07-20 13:45:56 +12:00
budibase/packages/datastores/.vscode/launch.json

20 lines
671 B
JSON
Raw Normal View History

2019-06-08 01:18:10 +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": [
{
"type": "node",
"request": "launch",
"name": "debug memory",
"program": "${workspaceFolder}/index.js",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/babel-node",
"runtimeArgs": ["--nolazy"],
"args":["memory"],
"skipFiles": [
"<node_internals>/**/*.js"
]
}
]
2019-03-20 10:45:21 +13:00
}