2024-08-22 17:57:53 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
|
|
|
|
|
|
|
module.exports = function (defaults) {
|
|
|
|
const app = new EmberApp(defaults, {
|
|
|
|
'ember-cli-babel': { enableTypeScriptTransform: true },
|
2024-09-19 11:50:04 +00:00
|
|
|
minifyCSS: {
|
|
|
|
options: { processImport: true },
|
|
|
|
},
|
2024-08-22 17:57:53 +00:00
|
|
|
|
|
|
|
// Add options here
|
|
|
|
});
|
|
|
|
|
|
|
|
return app.toTree();
|
|
|
|
};
|