加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
minwe 提交于 2016-07-02 23:24 . [*] DIY babel require ignore configure
import path from 'path';
export default {
output: {
library: 'AMUITouch',
libraryTarget: 'umd'
},
externals: [
{
'react': {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react'
}
},
{
'react-dom': {
root: 'ReactDOM',
commonjs2: 'react-dom',
commonjs: 'react-dom',
amd: 'react-dom'
}
},
{
'react-addons-css-transition-group': {
root: ['React', 'addons', 'CSSTransitionGroup'],
commonjs2: 'react-addons-css-transition-group',
commonjs: 'react-addons-css-transition-group',
amd: 'react-addons-css-transition-group'
}
}
],
resolveLoader: {
alias: {
'ignore-loader': path.resolve(__dirname, 'scripts/ignore-loader'),
}
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: {
plugins: require('./scripts/babel-require-ignore'),
}
},
]
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化