forked from meikidd/iso-639-1
-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
41 lines (39 loc) · 1006 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const path = require('path');
const webpack = require('webpack');
const CleanWebpackPlugin = require('clean-webpack-plugin');
// const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
// webpack 配置
let webpackConfig = {
entry: {
index: './src/index.js',
},
output: {
path: path.resolve(__dirname, `./build`), // 输出路径
filename: '[name].js', // js 文件路径
library: 'ISO6391',
libraryTarget: 'umd'
},
devtool: 'cheap-source-map',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: require('os').tmpdir(),
presets: ['es2015', 'stage-0'],
plugins: ['add-module-exports', 'transform-runtime'],
},
},
},
],
},
plugins: [
new webpack.NamedModulesPlugin(),
new CleanWebpackPlugin(['./build']),
// new UglifyJSPlugin()
],
};
module.exports = webpackConfig;