able-baker/example/deno.json

13 lines
415 B
JSON
Raw Permalink Normal View History

2023-06-06 22:48:45 -04:00
{
2023-06-07 17:09:40 -04:00
"compilerOptions": { "lib": ["deno.window", "dom"] },
2023-06-06 22:48:45 -04:00
"imports":
{
2023-07-16 22:23:10 -04:00
"react":"https://esm.sh/preact@10.15.1/compat",
"entry":"./app.tsx"
2023-06-15 17:50:55 -04:00
},
"tasks":
{
2023-07-16 22:23:10 -04:00
"local": "deno run -A --no-lock --reload=http://localhost:1234 http://localhost:1234/run-local.tsx",
"serve": "deno run -A --no-lock --reload=http://localhost:1234 http://localhost:1234/run-serve.tsx"
2023-06-06 22:48:45 -04:00
}
}