尝试使用 Babel6 Stage-1 加载我的反应应用程序时,我收到“模块解析失败”错误。我们最初运行 browserify,但我现在正试图将我们完全移植到 Babel6。
babel.rc 文件
{
"presets": ["stage-1", "react"],
"env": {
"development": {
"presets": ["react-hmre"]
}
}}
网络包配置
var path = require('path');
var webpack = require('webpack');
module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: [
'eventsource-polyfill', // necessary for hot reloading with IE
'webpack-hot-middleware/client',
'./src/index'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/static/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
module: {
loaders: [{
test: /\.jsx?/,
loaders: ['babel'],
include: path.join(__dirname, 'src'),
},
{
test: /\.css$/,
exclude: /node_modules/,
loader: 'style!css'
}]
}
};
我已经尝试阅读 Babel6 上的文档,似乎我需要在我的预设中包含 react 以及 Stage-1。
我已经完成并安装了npm:
babel preset stage 1、babel preset react、babel preset react hmre
关于如何再次加载反应的任何想法?