eno/example/deno.jsonc

14 lines
512 B
Plaintext
Raw Normal View History

{
2023-04-05 23:34:20 -04:00
"compilerOptions": {"lib": ["deno.window", "dom"]},
"imports":
{
"react": "https://esm.sh/preact@10.13.2/compat",
"@deep/": "./deep/",
2023-04-05 20:05:21 -04:00
"@eno/app": "./app.tsx",
"@eno/iso": "http://localhost:4507/lib/iso.tsx"
},
"tasks": {
2023-04-08 12:38:36 -04:00
"host": "deno run -A --unstable https://deno.land/std@0.181.0/http/file_server.ts",
2023-04-29 11:49:52 -04:00
"dev": "deno run -A --unstable --reload=http://localhost:4507/ --no-lock --config=deno.jsonc 'http://localhost:4507/server.tsx'"
}
}