@@ -3,7 +3,6 @@ import type { RolldownOutputPlugin } from 'node_modules/rolldown/dist/types/plug
3
3
import type { OutputOptions , RolldownOptions , RolldownPlugin } from 'rolldown'
4
4
import type { Options as ESBuildOptions } from 'rollup-plugin-esbuild'
5
5
import fs from 'node:fs'
6
- import dts from 'rollup-plugin-dts'
7
6
import esbuild from 'rollup-plugin-esbuild'
8
7
import { PluginPure as pure } from 'rollup-plugin-pure'
9
8
import { globSync } from 'tinyglobby'
@@ -14,7 +13,6 @@ const functions = metadata.functions as PackageIndexes['functions']
14
13
const configs : RolldownOptions [ ] = [ ]
15
14
16
15
const pluginEsbuild = esbuild ( )
17
- const pluginDts = dts ( )
18
16
const pluginPure = pure ( {
19
17
functions : [ 'defineComponent' ] ,
20
18
} )
@@ -133,9 +131,6 @@ export function createRolldownConfig(
133
131
{ file : `${ fn } .d.mts` } ,
134
132
{ file : `${ fn } .d.ts` } , // for node10 compatibility
135
133
] ,
136
- plugins : [
137
- pluginDts as RolldownPlugin ,
138
- ] ,
139
134
external : [
140
135
...externals ,
141
136
...( external || [ ] ) ,
@@ -173,9 +168,6 @@ export function createRolldownConfig(
173
168
{ file : `${ fn } /component.d.mts` } ,
174
169
{ file : `${ fn } /component.d.ts` } , // for node10 compatibility
175
170
] ,
176
- plugins : [
177
- pluginDts as RolldownPlugin ,
178
- ] ,
179
171
external : [
180
172
...externals ,
181
173
...( external || [ ] ) ,
0 commit comments