able-baker/deno.json
Seth Trowbridge 2b59bd33aa add proxy imports!
remove file.deno.tsx falback
2023-07-29 13:57:44 -04:00

19 lines
646 B
JSON

{
"compilerOptions": { "lib": ["deno.window", "dom"],
"jsx": "react-jsx",
"jsxImportSource": "https://esm.sh/preact@10.15.1/compat"
},
"imports":
{
"react":"https://esm.sh/preact@10.15.1/compat",
"react-original":"https://esm.sh/preact@10.15.1/compat",
"able/": "http://localhost:1234/",
"able:app": "./example/app.tsx",
">able/": "https://gitea.hptrow.me/SethTrowbridge/able-baker/raw/branch/master/"
},
"tasks":
{
"local": "deno run -A --no-lock ./run-local.tsx --port=1234",
"serve": "deno run -A --no-lock ./run-serve.tsx --port=1234"
}
}