Skip to content

Commit 5b00f45

Browse files
committed
fix: exclude nested plugin type
1 parent eeaaeba commit 5b00f45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
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)