Skip to content

Instantly share code, notes, and snippets.

@sjbarag
Created March 19, 2019 02:52
Show Gist options
  • Save sjbarag/d484895e04f2578c1913cce47b071730 to your computer and use it in GitHub Desktop.
Save sjbarag/d484895e04f2578c1913cce47b071730 to your computer and use it in GitHub Desktop.
My current VSCode settings.json when working with sjbarag/brs
{
// 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 tests",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"--debug",
"--runInBand",
"${workspaceFolder}/test/parser/expression/Function.test.js"
],
"outFiles": [
"${workspaceFolder}/lib/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Run BRS file",
"program": "${workspaceFolder}/bin/cli.js",
"args": [
"${workspaceFolder}/bad.brs"
],
"runtimeArgs": [
"--inspect-brk"
],
"outFiles": [
"${workspaceFolder}/lib/**/*.js"
]
},
{
"type": "node",
"request": "attach",
"name": "Attach by Process ID",
"processId": "${command:PickProcess}"
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/lib/index.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
@sjbarag
Copy link
Author

sjbarag commented Mar 19, 2019

@TwitchBronBron Here's a quick snapshot for now!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment