javascript - webpack不能使用es6 的模块?
PHP中文网
PHP中文网 2017-04-10 16:10:04
0
1
354

我在使用react的时候用es6特性,使用babel转码。
诸如class之类的语法都可以使用,
但是唯独es6的模块import export不能使用,只好用commonjsrequire exports,这是为什么?
是我的webpack配置不对么?
我下载下来的redux的例子都是用es6模块写的,webpack能编。
贴一下webpack.config.js

var webpack = require('webpack');
var commonsPlugin = new webpack.optimize.CommonsChunkPlugin('common.js')
var srcPath = './src/';
module.exports = {
    entry: srcPath + 'index.js',
    output: {
        path: './build/',
        filename: '[name].bundle.js'
    },
    module: {
        loaders: [{
            test: /\.js$/,
            loaders: [ 'babel' ],
            exclude: /node_modules/,
            include: __dirname
        }, {
            test: /\.css?$/,
            loaders: [ 'style', 'raw' ],
            include: __dirname
        }]
    },
    plugins: [
        new webpack.optimize.OccurenceOrderPlugin(),
        new webpack.HotModuleReplacementPlugin(),
        new webpack.NoErrorsPlugin()
    ],

    resolve: {
        extensions: ['', '.js', '.jsx', '.json', '.css'],
        root: ['./node_modules']
    }
};
PHP中文网
PHP中文网

认证高级PHP讲师

reply all(1)
PHPzhong

看下 http://segmentfault.com/q/1010000003958514/a-1020000003958627

另外 对于 ES6 语法 安装 babel-preset-es2015

npm install babel-preset-es2015 --save-dev

上面文章中的配置是在 package.json中配置 query

也可以在项目根目录下 添加配置文件 .babelrc

{
  "presets": [
    "es2015",
    "react"
  ]
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template