This repository was archived by the owner on Aug 4, 2021. It is now read-only.
This repository was archived by the owner on Aug 4, 2021. It is now read-only.
No type checking - Ignores errors in the code #51
Closed

Description
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
function foo(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!