Add local VSCode configuration for now

This commit is contained in:
Sam Vervaeck 2020-05-27 09:12:49 +02:00
parent 9757bf07ea
commit 5fc5a95ed4

21
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,21 @@
{
// 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",
"${workspaceFolder}/lib/***/*.js",
"<node_internals>/**"
],
"program": "${workspaceFolder}/lib/bin/bolt.js",
"args": ["check", "stdlib"],
}
]
}