We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Typescript seems to complain with empty file. For example with a css file which only contains global declarations.
It may be great to just add a /* empty */ comment to prevent errors in rollup builds (for example) :
/* empty */
Thanks ! Your plugin is amazing !
The text was updated successfully, but these errors were encountered:
an export {} can fix this
export {}
Sorry, something went wrong.
typescript > 2.6 disallow that. There is an issue about that in this repo
@DavidBabel are you sure it's not export default {} that is not allowed in TS > 2.6? export {} seems acceptable.
export default {}
Merge pull request #142 from tgelu/fix/78-empty-ts-files
19a1d9d
#78 fix: empty .d.ts files are now valid TS modules
No branches or pull requests
Typescript seems to complain with empty file. For example with a css file which only contains global declarations.
It may be great to just add a
/* empty */
comment to prevent errors in rollup builds (for example) :Thanks ! Your plugin is amazing !
The text was updated successfully, but these errors were encountered: