You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 4, 2021. It is now read-only.
With default TSC you can't transpile if there are issues in the code. With this plugin everything seems to be transpiled even with errors. No default type checking?
Example
functionfoo(name: string): void{}foo([]);// array and valid with this plugin
In VSCode I get this message: Argument of type 'never[]' is not assignable to parameter of type 'string'.
But Rollup ignores it and bundle just fine!
The text was updated successfully, but these errors were encountered:
Yes, I'm aware of the issue. I haven't gotten around to it mainly because I intercept typing errors through the editor, and only build with the plugin. It's definitely at the top of my TODO though.
With default TSC you can't transpile if there are issues in the code. With this plugin everything seems to be transpiled even with errors. No default type checking?
Example
In VSCode I get this message:
Argument of type 'never[]' is not assignable to parameter of type 'string'.
But Rollup ignores it and bundle just fine!
The text was updated successfully, but these errors were encountered: