您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

28 行
1.0 KiB

8 年前
8 年前
  1. // A launch configuration that compiles the extension and then opens it inside a new window
  2. {
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "name": "Launch Extension",
  7. "type": "extensionHost",
  8. "request": "launch",
  9. "runtimeExecutable": "${execPath}",
  10. "args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
  11. "stopOnEntry": false,
  12. "sourceMaps": true,
  13. "outFiles": ["${workspaceRoot}/out/src/**/*.js"],
  14. "preLaunchTask": "compile"
  15. },
  16. {
  17. "name": "Launch Tests",
  18. "type": "extensionHost",
  19. "request": "launch",
  20. "runtimeExecutable": "${execPath}",
  21. "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
  22. "stopOnEntry": false,
  23. "sourceMaps": true,
  24. "outFiles": ["${workspaceRoot}/out/test/**/*.js"],
  25. "preLaunchTask": "compile"
  26. }
  27. ]
  28. }