flecks/packages/create-app/template/.vscode/launch.json

21 lines
477 B
JSON
Raw Normal View History

2022-02-28 11:15:59 -06:00
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Flecks",
"skipFiles": [
"<node_internals>/**"
],
"resolveSourceMapLocations": [],
"sourceMapPathOverrides": {
"webpack:///*": "${workspaceFolder}/*",
2022-03-01 01:52:56 -06:00
"webpack://*": "node_modules/*"
2022-02-28 11:15:59 -06:00
},
"cwd": "${workspaceFolder}",
"runtimeExecutable": "npm",
2022-03-01 01:52:56 -06:00
"runtimeArgs": ["run", "start"]
2022-02-28 11:15:59 -06:00
}
]
}