Skip to content

Commit f06ba6b

Browse files
authored
fix: remove nested plugin type (#113)
1 parent c335d59 commit f06ba6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ type WithRequiredProperty<Type, Key extends keyof Type> = Type & {
2121

2222
type SWCOptions = WithRequiredProperty<JscConfig, 'parser' | 'transform'>
2323

24-
export default createUnplugin<Options | undefined>(
24+
export default createUnplugin<Options | undefined, false>(
2525
({ tsconfigFile, minify, include, exclude, ...options } = {}) => {
2626
const filter = createFilter(
2727
include || /\.[jt]sx?$/,

0 commit comments

Comments
 (0)