#How to ignore ts error when bundling?
10 messages · Page 1 of 1 (latest)
Bundle is deprecated (https://github.com/denoland/deno/issues/11073), try something like esbuild
Have you already tried the --check=none flag?
deno bundle --check=none '.\4. Tạo kết quả\4. Tạo kết quả.ts' fibery.js
``` and
```deno bundle '.\4. Tạo kết quả\4. Tạo kết quả.ts' fibery.js --check=none``` don't work
is this the correct install command? deno install --allow-read --allow-write -f https://deno.land/x/esbuild@v0.18.17 It throws error: Module not found "https://deno.land/x/esbuild@v0.18.17".
deno install https://deno.land/x/esbuild_deno_loader@0.8.1 and deno install https://deno.land/x/emit@0.25.0" return Module not found as well
You need to provided a specific file in the module to install, that's why it can't find it:
> deno install -A https://deno.land/x/esbuild@v0.18.17/mod.js
✅ Successfully installed esbuild
/Users/syrup/Library/Application Support/XDG/state/stav/deno/bin/esbuild
~/Downloads
> esbuild --version
0.18.17
Hmm, why can't it auto use mod.js?