forked from 23/resumable.js
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwebpack.config.js
More file actions
42 lines (41 loc) · 1.08 KB
/
webpack.config.js
File metadata and controls
42 lines (41 loc) · 1.08 KB
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
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
mode: 'none',
entry: {
main: './src/resumable.ts',
helpers: './src/resumableHelpers.ts',
},
target: ['web', 'es5'],
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
library: 'resumablejs',
libraryTarget: 'umd',
globalObject: 'this',
umdNamedDefine: true,
},
devtool: "source-map",
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: ["", ".webpack.js", ".web.js", ".ts", ".tsx", ".js"],
},
module: {
rules: [
// All files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'.
{ test: /\.tsx?$/, loader: "ts-loader" },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ test: /\.js$/, loader: "source-map-loader" },
],
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{
from: './src/types/types.d.ts',
to: './types/types.d.ts'
}
]
})
]
};