15 lines
400 B
JavaScript
Raw Normal View History

2019-08-31 20:51:14 -07:00
'use strict';
const buildCliOptionsFor = require('../../configs/ember-cli-build-options');
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
const { options } = buildCliOptionsFor(EmberApp.env());
2019-08-31 20:51:14 -07:00
module.exports = {
name: require('./package').name,
isDevelopingAddon: () => true,
...require('../../configs/import-mirage-tree-from-addon'),
2019-08-31 20:51:14 -07:00
options: {
ace: options.ace
2019-08-31 20:51:14 -07:00
}
};