ui/lib/shared/index.js

30 lines
570 B
JavaScript

/* eslint-disable */
const webpack = require('webpack');
'use strict';
module.exports = {
name: 'shared',
isDevelopingAddon() {
return true;
},
options: {
babel: { plugins: [require('ember-auto-import/babel-plugin')] },
autoImport: {
webpack: {
externals: { jquery: 'jQuery' },
node: {
fs: 'empty'
},
plugins: [
new webpack.EnvironmentPlugin({
LATER_COV: false
}),
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
],
}
},
}
};