Gnlow
Gnlow
 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" ```  ### Workaround using `denopkg` ```ts import { initCanvas } from "https://denopkg.com/gnlow/lilgpu@9637b05/browser.ts" ``` 
## 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...