eno/example/deno.jsonc

12 lines
357 B
Plaintext
Raw Normal View History

{
2023-04-05 23:34:20 -04:00
"compilerOptions": {"lib": ["deno.window", "dom"]},
"imports":
{
2023-04-29 20:16:28 -04:00
"react": "https://esm.sh/stable/preact@10.13.2/compat",
2023-04-05 20:05:21 -04:00
"@eno/app": "./app.tsx",
"@eno/iso": "http://localhost:4507/lib/iso.tsx"
},
"tasks": {
2023-04-29 21:15:14 -04:00
"dev": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock app.tsx --dev"
}
}