1234567891011121314151617181920212223242526272829 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Launch Wing Player",
- "type": "chrome",
- "request": "launch",
- "file": "index.html",
- "runtimeExecutable": "${execPath}",
- "useBuildInServer": true,
- "sourceMaps": true,
- "webRoot": "${workspaceRoot}",
- "preLaunchTask":"build",
- "port":5036
- },
- {
- "name": "Launch Chrome",
- "type": "chrome",
- "request": "launch",
- "file": "index.html",
- "useBuildInServer": true,
- "sourceMaps": true,
- "webRoot": "${workspaceRoot}",
- "preLaunchTask":"build",
- "userDataDir":"${tmpdir}",
- "port":5036
- }
- ]
- }
|