fix: ensure version is typed as string instead of the literal __VERSION__ (#8502)

fixes #8498
pull/8517/head
gtmnayan 2 years ago committed by GitHub
parent 9425f18e52
commit 2cc299185f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,5 +3,5 @@ export { default as parse } from './parse/index';
export { default as preprocess } from './preprocess/index';
export { walk } from 'estree-walker';
export const VERSION = '__VERSION__';
export const VERSION: string = '__VERSION__';
// additional exports added through generate-type-definitions.js

Loading…
Cancel
Save