?? lint doesn't seem to catch type errors ??
why am not getting a type checking error?
I put the file in
/tmp
. There are not config files there.
% deno lint a.ts
Checked 1 file
deno run a.ts
NaN2 Replies
lint is just linting, not type-checking
for that, you use
deno check
Thank you!