Gnlow

Results 5 issues of Gnlow

![code changes](https://github.com/denoland/deno_cache/assets/27040628/0ecaa5f3-469f-4b49-905d-2417ce5667dc) 5dcb098 (`http_cache.ts`, Line 75) changed `Deno.permissions.query` to `Deno.permissions.querySync`. And it seems to break compatibility with Deno Deploy. ``` TypeError: Deno.permissions.querySync is not a function at HttpCache.set (https://deno.land/x/[email protected]/http_cache.ts:75:27) ```...

#### current ```js html` Fired ${() => data.clicks} arrows ` ``` #### wanted ```js html` data.clicks++}> Fired ${() => data.clicks} arrows ` ``` ##### Lit do this ([link](https://lit.dev/docs/templates/expressions/#event-listener-expressions)) ```js html`Click...

``` deno run -A npm:esm.sh ``` ``` error: Uncaught (in promise) Error: Download https://github.com/esm-dev/esm.sh/releases/download/v136/esm.sh-cli-windows-amd64.gz: ```

Similar to #962 ```ts // Missing `X-TypeScript-Types` import { initCanvas } from "https://esm.sh/gh/gnlow/lilgpu@9637b05/browser.ts" ``` ![Image](https://github.com/user-attachments/assets/8b644f18-8e43-4f3c-84ce-533d9591e5a5) ### Workaround using `denopkg` ```ts import { initCanvas } from "https://denopkg.com/gnlow/lilgpu@9637b05/browser.ts" ``` ![Image](https://github.com/user-attachments/assets/a553f6cc-729d-4d6a-830b-2ac4f5635ffb)

## Describe the bug - In current setting, __`deno check`__ behaves as __expected__, __`vscode_deno`__ does ___not___. - doing one of belows make __both__ behave as __expected__ - add top level...