Skip to content

Commit ed27b2b

Browse files
committed
refactor: remove any
1 parent 4885b3e commit ed27b2b

File tree

1 file changed

+1
-1
lines changed
  • packages/babel-plugin-resolve-type/src

1 file changed

+1
-1
lines changed

packages/babel-plugin-resolve-type/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default ({
9090
filename: filename,
9191
source: file.code,
9292
options: this.compileOptions || {},
93-
ast: file.ast.program.body as any,
93+
ast: file.ast.program.body,
9494
error(msg, node) {
9595
throw new Error(
9696
`[@vue/babel-plugin-resolve-type] ${msg}\n\n${filename}\n${codeFrameColumns(

0 commit comments

Comments
 (0)