How can I enable type checks while running fresh
deno task start in a fresh project doesn't seem to care by default. Is there some config I can change or at least some other script I can run in parallel to check the types?
(I also observed that VSCode plugin seems to indicate more type related errors than my Jetbrains IDE, does somebody know why?)...axios gives me a CORS error, fetch doesn't. Why is that?

securing access for deno deploy?
Learning how this works under the hood
Closing a websocket server in a unit test
deno hanging forever?
my test case:
```js
import { send, App } from './mod.ts'...Error The deployment failed Module not found
Error The deployment failed: Module not found "npm:@coingecko/cryptoformat".Link to module: https://www.npmjs.com/package/@coingecko/cryptoformat...

File name conventions
.ts files are meant to be run from the command line.
Some of them when imported do things (like read .env files)
Is there a file naming convention for such things?...split error when using std toml
How to cancel or abort .pipeTo()?
stream1.pipeTo(stream2) then, with full access to both stream1 and stream2 try to shutdown/cancel/close/abort/sabotage/nuke stream1, stream2 or even just the pipe itself (copy-paste example below). The big issue is that, because of the pipeTo the deno process never ends. I've tried absolutely everything I can think of, including inheriting from WritableStream, prototype pollution hacks, accessing probably-shouldnt-be-accessed-directly-symbol keys, etc and I've not got a hint of success
```js...is it possible to change how tsx bundles to js?
<div class="test">Potato</div>
<div class="test">Potato</div>
can't load external modules when run as child process with Deno.spawnChild
turn off js with fetch?
Fresh fetch data in component
Supabase-slash-PostgresSQL ConnectionRefused Connection refused (os error 111) on Deno Deploy
ConnectionRefused: Connection refused (os error 111). The code and connection works fine from GitHub actions and from local. Any idea what's up? Supabase status is ok.
I've asked for help in https://discord.com/channels/684898665143206084/826085979344470037/1037982322378690611 as well....package to turn html into plaintext?
File line operations
FFI how to pass (or get) 128-bit bigints to (or from) Rust functions?
Unable to view logs to debug edge function for Deno Fresh + Deno Deploy
func attribute: the proxy-able edge function as a module export. The page errors with "An error occurred during route handling or page rendering."...TypeScript enums
How to get complete Deno RAM usage?
Deno.memoryUsage().rss or should it be rss+heapUsed+external?