Skip to content

Commit e5ca299

Browse files
committedAug 16, 2024··
fix: ignoresTypeAware reslove, fix #578
1 parent 9feacfc commit e5ca299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/configs/typescript.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ export async function typescript(
9999
// assign type-aware parser for type-aware files and type-unaware parser for the rest
100100
...isTypeAware
101101
? [
102+
makeParser(false, files),
102103
makeParser(true, filesTypeAware, ignoresTypeAware),
103-
makeParser(false, files, filesTypeAware),
104104
]
105105
: [
106106
makeParser(false, files),

0 commit comments

Comments
 (0)
Please sign in to comment.