-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.js
76 lines (74 loc) · 1.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright (c) Jupyter Development Team.
// Copyright (c) Bloomberg Finance LP.
// Distributed under the terms of the Modified BSD License.
const path = require('path');
const webpack = require('webpack');
const miniSVGDataURI = require('mini-svg-data-uri');
module.exports = {
entry: './src/inpage/index.ts',
target: 'web',
output: {
path: path.resolve(__dirname, 'lib/lib-inpage'),
filename: 'inpage.js',
publicPath: '/',
hashFunction: 'sha256'
},
resolve: {
extensions: ['.ts', '.js']
},
optimization: {
minimize: false
},
devtool: 'source-map',
module: {
rules: [
{ test: /\.ts$/, use: ['ts-loader'] },
{ test: /\.css$/, use: ['style-loader', 'css-loader'] },
{ test: /\.md$/, type: 'asset/source' },
{ test: /\.txt$/, type: 'asset/source' },
{
test: /\.js$/,
enforce: 'pre',
use: ['source-map-loader']
},
{ test: /\.(jpg|png|gif)$/, type: 'asset/resource' },
{ test: /\.js.map$/, type: 'asset/resource' },
{
test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset'
},
{
test: /\.woff(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset'
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset'
},
{
test: /\.otf(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset'
},
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, type: 'asset/resource' },
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
issuer: /\.css$/,
type: 'asset',
generator: {
dataUrl: content => miniSVGDataURI(content.toString())
}
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
issuer: /\.js$/,
type: 'asset/source'
}
]
},
plugins: [
new webpack.DefinePlugin({
'process.env': '{}',
process: { cwd: () => '/' }
})
]
};