-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathwebpack.config.cjs
104 lines (102 loc) · 3.06 KB
/
webpack.config.cjs
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const path = require('path');
const sveltePreprocess = require('svelte-preprocess');
const HtmlWebpackPlugin = require('html-webpack-plugin')
const mode = process.env.NODE_ENV || 'development';
const prod = mode === 'production';
module.exports = {
entry: {
'index': ['./src/demo'],
'official-samples': ['./src/demo/official-samples'],
},
resolve: {
alias: Object.assign({
'svelte-lightweight-charts': path.resolve(__dirname, './dist'),
}),
extensions: ['.mjs', '.js', '.ts', '.svelte'],
},
output: {
path: path.join(__dirname, '/public'),
filename: prod ? '[name].[contenthash].js' : '[name].js',
chunkFilename: prod ? '[name].[id].[contenthash].js' : '[name].[id].js'
},
module: {
rules: [
{
test: /\.ts$/,
loader: 'ts-loader',
options: {
transpileOnly: true,
},
exclude: /node_modules/
},
{
test: /\.svelte$/,
use: {
loader: 'svelte-loader',
options: {
compilerOptions: {
dev: !prod
},
emitCss: prod,
hotReload: !prod,
preprocess: sveltePreprocess({sourceMap: !prod})
}
}
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader'
]
},
{
// required to prevent errors from Svelte on Webpack 5+
test: /node_modules\/svelte\/.*\.mjs$/,
resolve: {
fullySpecified: false
}
}
]
},
mode,
plugins: [
new MiniCssExtractPlugin({
filename: prod ? '[name].[contenthash].css' : '[name].css'
}),
new ForkTsCheckerWebpackPlugin({
typescript: {
configOverwrite: {
skipLibCheck: false,
}
}
}),
new HtmlWebpackPlugin({
chunks: ['runtime', 'vendors', 'index'],
filename: 'index.html',
}),
new HtmlWebpackPlugin({
chunks: ['runtime', 'vendors', 'official-samples'],
filename: 'official-samples.html',
})
],
devtool: prod ? false : 'source-map',
devServer: {
hot: false
},
optimization: {
moduleIds: 'deterministic',
runtimeChunk: 'single',
splitChunks: {
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
chunks: 'all',
},
},
},
},
};