blob: ee5db77974accd1105c1d1d737271465aa075230 [file] [log] [blame]
pineafan4f164f32022-02-26 22:07:12 +00001{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
pineafan1dc15722022-03-14 21:27:34 +00007
pineafan4f164f32022-02-26 22:07:12 +00008 {
9 "command": "npm run dev",
pineafan1dc15722022-03-14 21:27:34 +000010 "name": "Run npm dev",
pineafan4f164f32022-02-26 22:07:12 +000011 "request": "launch",
12 "type": "node-terminal"
13 },
14 {
15 "type": "pwa-node",
16 "request": "launch",
17 "name": "Launch Program",
18 "skipFiles": [
19 "<node_internals>/**"
20 ],
21 "program": "${workspaceFolder}/dist/index.js",
22 "preLaunchTask": "tsc: build - tsconfig.json",
23 "outFiles": [
24 "${workspaceFolder}/dist/**/*.js"
25 ]
26 }
27 ]
28}