linstrom/frontend-reactive/ember-cli-build.js

20 lines
406 B
JavaScript
Raw Permalink Normal View History

2024-09-23 07:18:35 +00:00
'use strict';
2024-08-22 17:57:53 +00:00
2024-09-23 07:18:35 +00:00
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
2024-08-22 17:57:53 +00:00
module.exports = function (defaults) {
2024-09-23 07:18:35 +00:00
const app = new EmberApp(defaults, {
'ember-cli-babel': { enableTypeScriptTransform: true },
minifyCSS: {
options: { processImport: true },
},
2024-08-22 17:57:53 +00:00
2024-09-23 07:18:35 +00:00
// Add options here
autoImport: {
watchDependencies: ['ember-moment'],
},
});
2024-08-22 17:57:53 +00:00
2024-09-23 07:18:35 +00:00
return app.toTree();
2024-08-22 17:57:53 +00:00
};