GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
692 B

2 months ago
  1. module.exports = {
  2. /*
  3. Headless mode forces the firepit builds to exactly imitate firebase-tools,
  4. so the resulting binary "firebase" is a drop in replacement for the script
  5. installed via npm. This is the behavior for CI / Cloud Shell / Docker etc.
  6. When headless mode is disabled, the "double click" experience is enabled
  7. which allows the binary to spawn a terminal on Windows and Mac. The is the
  8. behavior for desktop users.
  9. */
  10. headless: false,
  11. /*
  12. This is generally set to "firebase-tools@latest" however a custom value
  13. can be supplied for EAPs which would like to have builds pointed at
  14. specific tgz bundles.
  15. */
  16. firebase_tools_package: ""
  17. };