bridge.debug.json 634 B

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