test-skybox/.vscode/launch.json

25 lines
598 B
JSON
Raw Normal View History

2024-08-13 10:56:27 +00:00
// 使用module方式生成配置
{
"version": "0.2.0",
"configurations": [
2024-08-13 14:39:49 +00:00
{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:5000",
"webRoot": "${workspaceFolder}"
},
2024-08-13 10:56:27 +00:00
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}