UNPKG
@bluesyoung/call-app
Version:
latest (0.1.1)
0.1.1
0.1.0
0.0.2
try call app
github.com/BluesYoung-web/young
BluesYoung-web/young
@bluesyoung/call-app
/
tsup.config.ts
14 lines
(13 loc)
•
282 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* * @Author: zhangyang * @Date: 2022-04-28 14:22:55 * @LastEditTime: 2022-05-13 11:03:57 * @Description: 仅作为 dts 生成器 */
import
{ defineConfig }
from
'tsup'
;
export
default
defineConfig
(
(
options
) =>
{
return
{
entry
: [
'src/index.ts'
],
dts
:
true
, }; });