12345678910111213141516171819202122232425262728 |
- // See all bridge.json configuration options at:
- // https://github.com/bridgedotnet/Bridge/wiki/global-configuration
- {
- "afterBuild": "phr-build.bat",
- "output": "resources/js/bridge/debug",
- // Set to "Minified" to generate .min.js files.
- // Set to "Both" to generate both minified and non-minified .js files.
- // "Formatted" generates non-minified .js files.
- "outputFormatting": "Formatted",
- // Enable browser debugging of C# files.
- // Default is false.
- "sourceMap": {
- "enabled": true
- },
- // Add compilation logging to your Project.
- // Outputs a tab-delimited bridge.log file.
- // Set to "Trace" for full logging.
- // Default is "None".
- "logging": {
- "level": "Trace"
- }
- }
|