typed-htmx
typed-htmx copied to clipboard
Deno not supported out of the box
doesnt work when i do "nodeModulesDir": "auto"
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.
Hi, any updates on Deno jsr support?