2024-09-20 14:35:59 +00:00
|
|
|
"use strict";
|
2024-08-22 17:57:53 +00:00
|
|
|
|
2024-09-20 14:35:59 +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-20 14:35:59 +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-20 14:35:59 +00:00
|
|
|
// Add options here
|
|
|
|
autoImport: {
|
|
|
|
watchDependencies: ["ember-moment"],
|
|
|
|
},
|
|
|
|
});
|
2024-08-22 17:57:53 +00:00
|
|
|
|
2024-09-20 14:35:59 +00:00
|
|
|
return app.toTree();
|
2024-08-22 17:57:53 +00:00
|
|
|
};
|