able-baker/deno.json

19 lines
803 B
JSON
Raw Normal View History

2023-06-07 17:09:40 -04:00
{
2023-06-07 23:35:00 -04:00
"compilerOptions": { "lib": ["deno.window", "dom"],
"jsx": "react-jsx",
2023-06-15 17:13:51 -04:00
"jsxImportSource": "https://esm.sh/preact@10.15.1/compat"
2023-06-07 23:35:00 -04:00
},
2023-06-07 17:09:40 -04:00
"imports":
{
2023-06-07 23:35:00 -04:00
"react":"https://esm.sh/preact@10.15.1/compat",
"react-original":"https://esm.sh/preact@10.15.1/compat",
2023-07-30 09:16:17 -04:00
"able/": "http://localhost:4507/"
2023-06-15 17:13:51 -04:00
},
"tasks":
{
2023-07-30 09:16:17 -04:00
"local": "deno run -A --reload=http://localhost:4507 --no-lock ./run-local.tsx --port=1234",
"serve": "deno run -A --reload=http://localhost:4507 --no-lock ./run-serve.tsx --port=1234",
"debug": "deno run -A --reload=http://localhost:4507 --inspect-wait --no-lock ./run-serve.tsx --port=1234",
"deploy":"deno run -A --no-lock --reload=http://localhost:4507 http://localhost:4507/run-deploy.tsx"
2023-06-07 17:09:40 -04:00
}
}