forked from HarbourMasters/ship.equipment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.js
50 lines (47 loc) · 1.4 KB
/
webpack.prod.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
42
43
44
45
46
47
48
49
50
var webpack = require('webpack');
var config = require('./webpack.config');
config.mode = 'production';
config.devtool = 'source-map';
module.exports = config;
// module.exports = {
// // mode: 'production',
// // mode: 'development',
// entry: './src/index.js',
// stats: 'normal',
// output: {
// path: path.resolve(__dirname, "dist"),
// libraryTarget: 'var',
// library: 'Hasher',
// filename: "hasher.js",
// },
// // devtool: 'source-map',
// module: {
// rules: [
// // {
// // test: /\.tsx?$/,
// // loaders: ['babel-loader', 'ts-loader?' + JSON.stringify({
// // presets: ["es2015", { "modules": false }]
// // })],
// // 'exclude': [/node_modules/],
// // // query: {
// // // presets: ["es2015", { "modules": false }]
// // // }
// // },
// {
// test: /\.js$/,
// loader: 'babel-loader',
// query: {
// presets: ['es2015']
// }
// }
// ]
// },
// node: {
// Buffer: false,
// },
// plugins: [
// new webpack.LoaderOptionsPlugin({
// debug: true
// })
// ]
// };