From 8c0fe00c6f9f9edd5d4836c5db865372062fe6c8 Mon Sep 17 00:00:00 2001 From: Dolan Date: Fri, 24 Feb 2023 02:55:53 +0000 Subject: [PATCH] Add launch json --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..ef4e0bdeb5 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Run Demo", + "type": "node", + "request": "launch", + "runtimeArgs": [ + "-r", + "${workspaceFolder}/node_modules/ts-node/register", + "-r", + "${workspaceFolder}/node_modules/tsconfig-paths/register" + ], + "cwd": "${workspaceRoot}", + "program": "${workspaceFolder}/demo/85-template-document.ts" + } + ] +}