launch.json 800 B

123456789101112131415161718192021222324
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "chrome调试",
  9. "type": "chrome",
  10. "request": "launch",
  11. "file": "${workspaceRoot}/bin/index.html",
  12. "runtimeArgs": [
  13. "--allow-file-access-from-files",
  14. " --disable-web-security"
  15. ],
  16. "sourceMaps": true,
  17. "webRoot": "${workspaceRoot}",
  18. "userDataDir": "${workspaceRoot}/.laya/chrome",
  19. "sourceMapPathOverrides": {
  20. "src/*": "${workspaceRoot}/src/*"
  21. }
  22. }
  23. ]
  24. }