热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何使用ES6语法编写Webpack配置文件?

研究了一下,但是照着做还是不对,求指教。1234567891011121314151617// file: webpack.config.babel.jsimport path from 'path'

研究了一下,但是照着做还是不对,求指教。



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// file: webpack.config.babel.js

import path from 'path';



export default {

    entry: './src/index.js',



    output: {

        path: path.resolve(__dirname, 'build'),

        filename: 'bundle.js'

    },



    module: {

        loaders: [

            {test: /\.js$/, loader: 'babel'}

        ]

    }

}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//file: package.json

{

  "name": "demo",

  "version": "1.0.0",

  "main": "index.js",

  "scripts": {

    "start": "webpack-dev-server --devtool eval --progress --colors --inline --hot --content-base build",

    "test": "echo "Error: no test specified" && exit 1"

  },

  "dependencies": {

    "history": "^1.17.0",

    "react": "^0.14.5",

    "react-dom": "^0.14.5",

    "react-router": "^1.0.3"

  },

  "devDependencies": {

    "babel-core": "^6.3.26",

    "babel-loader": "^6.2.0",

    "webpack": "^1.12.9",

    "webpack-dev-server": "^1.14.0"

  }

}



   



推荐阅读
author-avatar
@Cobub
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有