-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
webpack.config.js
56 lines (54 loc) · 1.45 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const webpack = require("webpack");
const { resolve } = require('path');
const CopyPlugin = require("copy-webpack-plugin");
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
module.exports = {
mode: 'production',
entry: './src/index.ts',
output: {
path: resolve(__dirname, 'dist'),
filename: 'index.js',
library: 'encrypt-storage',
libraryTarget: 'umd',
umdNamedDefine: true,
},
devtool: 'cheap-module-source-map',
// devtool: 'nosources-source-map',
resolve: {
extensions: ['.ts', '.js'],
fallback: {
"crypto": require.resolve("crypto-browserify"),
"stream": require.resolve("stream-browserify"),
"assert": require.resolve("assert"),
"http": require.resolve("stream-http"),
"https": require.resolve("https-browserify"),
"os": require.resolve("os-browserify"),
"url": require.resolve("url"),
"buffer": require.resolve("buffer/")
},
alias: {
process: "process/browser",
path: require.resolve("path-browserify"),
}
},
module: {
rules: [{
test: /\.ts$/,
use: 'ts-loader',
exclude: '/node_modules/'
}],
},
plugins: [
new NodePolyfillPlugin(),
new webpack.ProvidePlugin({
process: 'process/browser',
Buffer: ['buffer', 'Buffer'],
}),
new CopyPlugin({
patterns: [
{ from: "./README.md", to: "README.md" },
{ from: "./LICENSE", to: "LICENSE.txt" },
],
}),
],
}