-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrslib.config.ts
More file actions
58 lines (57 loc) · 1.15 KB
/
Copy pathrslib.config.ts
File metadata and controls
58 lines (57 loc) · 1.15 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
import { pluginIconify } from "@pathscale/rsbuild-plugin-iconify";
import { pluginBabel } from "@rsbuild/plugin-babel";
import { pluginSolid } from "@rsbuild/plugin-solid";
import { defineConfig } from "@rslib/core";
export default defineConfig({
source: {
entry: {
index: ["./src/**/*.{ts,tsx}"],
},
},
lib: [
{
bundle: false,
dts: {
bundle: false,
},
format: "esm",
outBase: "./src",
autoExternal: {
dependencies: true,
peerDependencies: true,
},
},
],
output: {
target: "web",
copy: [
{
from: "**/*.css",
to: "styles",
context: "./src/styles",
},
{
from: "**/*.css",
to: "components",
context: "./src/components",
},
{
from: "index.css",
to: ".",
context: "./src",
},
],
},
plugins: [
pluginBabel({
include: /\.(?:jsx|tsx)$/,
}),
pluginSolid(),
pluginIconify({
targetDir: "src/styles/icons",
includeSets: ["mdi-light", "material-symbols"],
forceIncludeSets: false,
maxIconsPerSet: 1000,
}),
],
});