0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00
hono/runtime-tests/deno-jsx/deno.precompile.json
Yusuke Wada dfbd717263
chore: rename runtime_tests to runtime-tests (#3419)
* chore: rename `runtime_tests` to `runtime-tests`

* fixed GitHub workflow
2024-09-17 14:51:43 +09:00

18 lines
326 B
JSON

{
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx",
"lib": [
"deno.ns",
"dom",
"dom.iterable"
]
},
"unstable": [
"sloppy-imports"
],
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.3",
"hono/jsx/jsx-runtime": "../../src/jsx/jsx-runtime.ts"
}
}