-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathrspack.config.js
More file actions
77 lines (75 loc) · 1.69 KB
/
rspack.config.js
File metadata and controls
77 lines (75 loc) · 1.69 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
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
const { rspack } = require('@rspack/core');
const fs = require('node:fs');
const { isReactCompilerRequiredSync } = require('@swc/react-compiler');
/** @type {import('@rspack/cli').Configuration} */
const config = {
entry: {
main: './src/index.tsx',
},
experiments: {
css: true,
},
resolve: {
extensions: ['...', '.jsx', '.tsx', '.ts'],
},
module: {
rules: [
{
test: /\.(js|ts)$/,
exclude: [/[\\/]node_modules[\\/]/],
use: [
{
loader: 'builtin:swc-loader',
options: {
sourceMaps: true,
jsc: {
parser: {
syntax: 'typescript',
},
externalHelpers: true,
},
},
},
],
},
{
test: /\.(jsx|tsx)$/,
use: [
{
loader: 'builtin:swc-loader',
options: {
sourceMaps: true,
jsc: {
parser: {
syntax: 'typescript',
tsx: true,
},
externalHelpers: true,
transform: {
react: {
runtime: 'automatic',
},
},
},
},
},
],
},
{
test: (resource) =>
/\.(jsx|tsx)$/.test(resource) && isReactCompilerRequiredSync(fs.readFileSync(resource)),
loader: 'babel-loader',
},
{
test: /\.(png|svg|jpg)$/,
type: 'asset/resource',
},
],
},
plugins: [
new rspack.HtmlRspackPlugin({
template: './index.html',
}),
],
};
module.exports = config;