-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
99 lines (97 loc) · 2.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const FAVICON = './src/assets/logo/logo_favicon.png';
module.exports = (env = {}) => ({
entry: {
index: './src/pages/home.tsx',
playground: './src/pages/playground.tsx',
'editor.worker': 'monaco-editor/esm/vs/editor/editor.worker.js',
'json.worker': 'monaco-editor/esm/vs/language/json/json.worker',
},
output: {
filename: '[name].bundle.js'
},
devtool: "source-map",
resolve: {
extensions: ['.js', '.ts', '.tsx'],
fallback: {
buffer: require.resolve('buffer/'),
},
},
module: {
rules: [
{test: /\.tsx?$/, use: 'ts-loader'},
{
// loader for CSS from libraries (node_modules)
test: /\.css$/,
include: path.resolve(__dirname, 'node_modules'),
use: [
{loader: 'style-loader'},
{loader: 'css-loader'},
]
},
{
// CSS modules for this app
test: /\.css$/,
exclude: path.resolve(__dirname, 'node_modules'),
use: [
{loader: 'style-loader'},
{
loader: 'css-loader',
options: {
modules: {
mode: 'local',
namedExport: true,
localIdentName: 'ramp-[name]__[local]--[hash:base64:5]',
}
}
},
]
},
{
// generate .d.ts files for CSS modules
enforce: 'pre',
test: /\.css$/,
exclude: path.resolve(__dirname, 'node_modules'),
use: [
{
loader: 'typed-css-modules-loader',
options: {
noEmit: true,
}
},
],
},
{
test: /\.(png|svg|jpg|gif|ttf)$/,
type: 'asset/resource',
},
{
test: /\.ttl$/,
type: 'asset/source',
},
]
},
plugins: [
new HtmlWebpackPlugin({
title: 'RAMP shapes - Home',
chunks: ['index'],
template: 'src/pages/template.ejs',
favicon: FAVICON,
filename: 'index.html',
env,
}),
new HtmlWebpackPlugin({
title: 'RAMP shapes - Playground',
chunks: ['playground'],
template: 'src/pages/template.ejs',
favicon: FAVICON,
filename: 'playground.html',
env,
}),
],
performance: {
maxEntrypointSize: 5 * 1024 * 1024,
maxAssetSize: 5 * 1024 * 1024,
}
});