mirror of https://github.com/rancher/ui.git
30 lines
570 B
JavaScript
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$/),
|
|
],
|
|
}
|
|
},
|
|
}
|
|
};
|