initial jsx support

This commit is contained in:
laura 2025-11-01 14:50:30 -03:00
parent 2301c5d631
commit 11be5e979c
Signed by: w
GPG key ID: BCD2117C99E69817
7 changed files with 77 additions and 30 deletions

View file

@ -2,6 +2,9 @@
"tasks": {
"dev": "deno run --allow-net src/main.ts"
},
"imports": {
"interest/jsx-runtime": "./src/jsx.ts"
},
"lint": {
"rules": {
"tags": [
@ -11,14 +14,13 @@
}
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "interest",
"lib": [
"deno.ns",
"esnext",
"dom",
"dom.iterable"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
}
}