typed-htmx icon indicating copy to clipboard operation
typed-htmx copied to clipboard

Deno not supported out of the box

Open Pyakz opened this issue 1 year ago • 2 comments

Screenshot 2024-12-07 at 7 12 41 PM

doesnt work when i do "nodeModulesDir": "auto"

Pyakz avatar Dec 07 '24 11:12 Pyakz

nodeModulesDir doesn't seem to be required, but Deno is not including types from typed-html so you'll have to do this:

/// <reference types="npm:typed-htmx"/>
/// <reference types="npm:typed-html"/>

export function foo() {
  return <div hx-boost="true" />
}

I'll research later if uploading the library to jsr.io fixes the issue.

Desdaemon avatar Dec 07 '24 14:12 Desdaemon

Hi, any updates on Deno jsr support?

omarcresp avatar Jul 02 '25 11:07 omarcresp