bridge.debug.json 711 B

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