aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2022-02-09 22:02:55 -0600
committerMatt Strapp <matt@mattstrapp.net>2022-02-09 22:02:55 -0600
commit59f6e710cd261879cb27a9f62ea76c7421fb7404 (patch)
tree3e2e36b67895b407e135be22eff8c2c95480aaa1 /.vscode/launch.json
parentconfigure CRSF properly (diff)
downloadee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.gz
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.bz2
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.lz
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.xz
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.zst
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.zip
add debugging
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..3220b3d
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,18 @@
+{
+ // 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": "Launch Program",
+ "program": "${workspaceFolder}/src/index.ts",
+ "preLaunchTask": "npm: build",
+ "outFiles": [
+ "${workspaceFolder}/dist/**/*.js"
+ ]
+ }
+ ]
+} \ No newline at end of file