app.build.js 419 B

1234567891011121314151617181920
  1. ({
  2. appDir: "../",
  3. baseUrl: "scripts/",
  4. dir: "../../webapp-build",
  5. //Comment out the optimize line if you want
  6. //the code minified by UglifyJS
  7. optimize: "none",
  8. paths: {
  9. "jquery": "empty:"
  10. },
  11. modules: [
  12. //Optimize the application files. jQuery is not
  13. //included since it is already in require-jquery.js
  14. {
  15. name: "main"
  16. }
  17. ]
  18. })