How to ignore ts error when bundling?
I run
and it refuses to work due to 41 errors. Mostly they are any type error. When debugging they run fine. Is there a way to force bundling? I add the //@ts-ignore at the top of the file but it doesn't work
7 Replies
GitHub
Issues · denoland/deno
A modern runtime for JavaScript and TypeScript. Contribute to denoland/deno development by creating an account on GitHub.
Have you already tried the
--check=none
flag? and
don't work
is this the correct install command? It throws
and return
Module not found
as welltry using this too
https://deno.land/x/esbuild_deno_loader@0.8.1
You need to provided a specific file in the module to install, that's why it can't find it:
Hmm, why can't it auto use mod.js?
@ooker The
// @ts-ignore
comment only ignores errors in the next line. It doesn't silence all errors in the same file.