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
deno check --doc ./example.ts does not report an error.
Actual
deno check --doc ./example.ts report an error:
deno check --doc ./example.ts
Check file:///...snip.../example.ts
Check file:///...snip.../example.ts$2-10.ts
error: TS2345 [ERROR]: Argument of type 'string' is not assignable to parameter of type 'number'.
add('1', '2');
~~~
at file:///...snip.../example.ts$2-10.ts:3:5
The text was updated successfully, but these errors were encountered:
Version: Deno 2.0.3
In file
example.ts
:(
@ts-ignore
has the same problem)Expected
deno check --doc ./example.ts
does not report an error.Actual
deno check --doc ./example.ts
report an error:The text was updated successfully, but these errors were encountered: