UNPKG
@spark-ui/components
Version:
latest (10.11.1)
10.11.1
10.11.0
10.10.0
10.9.0
10.8.2
10.8.1
10.8.0
10.7.7
10.7.6
10.7.5
10.7.4
10.7.3
10.7.2
10.7.1
10.7.0
10.6.8
10.6.7
10.6.6
10.6.5
10.6.4
10.6.3
10.6.2
10.6.1
10.6.0
10.5.10
10.5.9
10.5.8
10.5.7
10.5.6
10.5.5
10.5.4
10.5.3
10.5.2
10.5.1
10.5.0
10.4.3
10.4.2
10.4.1
10.4.0
10.3.6
10.3.5
10.3.4
10.3.3
10.3.2
10.3.1
10.3.0
10.2.9
10.2.8
10.2.7
10.2.6
10.2.5
10.2.4
10.2.3
10.2.1
10.2.0
10.1.1
10.1.0
10.0.13
10.0.12
10.0.11
10.0.10
10.0.9
10.0.8
10.0.7
10.0.6
10.0.5
10.0.4
10.0.3
10.0.2
10.0.1
10.0.0
Spark (Leboncoin design system) components.
sparkui.vercel.app
leboncoin/spark-web
@spark-ui/components
/
tsup.config.ts
13 lines
(11 loc)
•
312 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{ defineConfig }
from
'tsup'
export
default
defineConfig
(
() =>
{
return
{
entryPoints
: [
'src/*/index.(ts|tsx)'
],
format
: [
'cjs'
,
'esm'
],
dts
:
true
,
sourcemap
:
true
,
external
: [
'react'
,
'@spark-ui/components/form-field'
],
noExternal
: [
'!@spark-ui/components/form-field'
], } })