From 25ccf059ff9ff775a9ce21c0cb57dcc453bc88a4 Mon Sep 17 00:00:00 2001 From: Ilio Catallo Date: Sun, 17 Dec 2023 12:12:36 +0100 Subject: [PATCH] Instruct VSCode debugger --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b410f47 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Current File", + "type": "node", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "env": { + "NODE_OPTIONS": "--import ./civet.js" + } + } + ] +}