bridge.release.json 676 B

1234567891011121314151617181920212223242526
  1. // See all bridge.json configuration options at:
  2. // https://github.com/bridgedotnet/Bridge/wiki/global-configuration
  3. {
  4. "output": "resources/js/bridge/min",
  5. // Set to "Minified" to generate .min.js files.
  6. // Set to "Both" to generate both minified and non-minified .js files.
  7. // "Formatted" generates non-minified .js files.
  8. "outputFormatting": "Minified",
  9. // Enable browser debugging of C# files.
  10. // Default is false.
  11. "sourceMap": {
  12. "enabled": false
  13. },
  14. // Add compilation logging to your Project.
  15. // Outputs a tab-delimited bridge.log file.
  16. // Set to "Trace" for full logging.
  17. // Default is "None".
  18. "logging": {
  19. "level": "Trace"
  20. }
  21. }