FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
rstack-examples/rslib/solid-basic/rslib.config.ts at main · rstackjs/rstack-examples · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
rstackjs
/
rstack-examples
Public
Notifications
You must be signed in to change notification settings
Fork
46
Star
166
Code
Issues
8
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
rstack-examples
/
rslib
/
solid-basic
/
rslib.config.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
54 lines (53 loc) · 1008 Bytes
Breadcrumbs
rstack-examples
/
rslib
/
solid-basic
/
rslib.config.ts
Copy path
File metadata and controls
54 lines (53 loc) · 1008 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
{
pluginBabel
}
from
'@rsbuild/plugin-babel'
;
import
{
pluginSolid
}
from
'@rsbuild/plugin-solid'
;
import
{
defineConfig
}
from
'@rslib/core'
;
export
default
defineConfig
(
{
lib
:
[
{
id
:
'compiled'
,
bundle
:
false
,
format
:
'esm'
,
dts
:
true
,
plugins
:
[
pluginBabel
(
{
include
:
/
\.
(?:
j
s
x
|
t
s
x
)
$
/
,
}
)
,
pluginSolid
(
)
,
]
,
}
,
{
id
:
'source'
,
bundle
:
false
,
format
:
'esm'
,
output
:
{
filename
:
{
js
:
'[name].jsx'
,
}
,
}
,
tools
:
{
swc
:
{
detectSyntax
:
'auto'
,
jsc
:
{
transform
:
{
react
:
{
runtime
:
'preserve'
,
}
,
}
,
}
,
}
,
rspack
:
{
module
:
{
parser
:
{
javascript
:
{
jsx
:
true
,
}
,
}
,
}
,
}
,
}
,
}
,
]
,
output
:
{
target
:
'web'
,
}
,
}
)
;
Back
|
FazBrowse Home
|
New Git URL