bolt/.vscode/launch.json

21 lines
706 B
JSON
Raw Normal View History

2020-05-27 09:12:49 +02: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": "Run on Test File",
"outputCapture": "std",
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
2020-05-27 17:17:27 +02:00
"${workspaceFolder}/lib/**/*.js",
2020-05-27 09:12:49 +02:00
"<node_internals>/**"
],
"program": "${workspaceFolder}/lib/bin/bolt.js",
"args": ["check", "stdlib"],
}
]
}