launch.json 963 B

123456789101112131415161718192021222324252627282930
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "app_flowy",
  9. "request": "launch",
  10. "program": "${workspaceRoot}/lib/main.dart",
  11. "type": "dart",
  12. "preLaunchTask": "build_flowy_sdk",
  13. "cwd": "${workspaceRoot}"
  14. },
  15. {
  16. "name": "app_flowy (profile mode)",
  17. "request": "launch",
  18. "type": "dart",
  19. "flutterMode": "profile"
  20. },
  21. {
  22. "name": "Generate Language Files",
  23. "request": "launch",
  24. "program": "${workspaceRoot}/lib/main.dart",
  25. "type": "dart",
  26. "preLaunchTask": "Generate Language Files",
  27. "cwd": "${workspaceRoot}"
  28. },
  29. ]
  30. }