From 5749228c2eb3ad22abf8006c90cc0bf3b5fc5865 Mon Sep 17 00:00:00 2001 From: cha0s Date: Mon, 28 Feb 2022 11:15:59 -0600 Subject: [PATCH] feat: VSCode launch config --- .../create-app/template/.vscode/launch.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 packages/create-app/template/.vscode/launch.json diff --git a/packages/create-app/template/.vscode/launch.json b/packages/create-app/template/.vscode/launch.json new file mode 100644 index 0000000..873d48c --- /dev/null +++ b/packages/create-app/template/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // 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": "pwa-node", + "request": "launch", + "name": "Flecks", + "skipFiles": [ + "/**" + ], + "resolveSourceMapLocations": [], + "sourceMapPathOverrides": { + "webpack:///*": "${workspaceFolder}/*", + "webpack://*": "node_modules/*", + }, + "cwd": "${workspaceFolder}", + "runtimeExecutable": "npm", + "runtimeArgs": ["run", "start"], + } + ] +} \ No newline at end of file