able-baker/deno__.json

20 lines
771 B
JSON
Raw Permalink 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-08-01 10:19:39 -04:00
"jsxImportSource": "react"
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",
2023-08-01 10:19:39 -04:00
"react/":"https://esm.sh/preact@10.15.1/compat/",
"react-original":"https://esm.sh/preact@10.15.1/compat",
2023-08-13 11:00:48 -04:00
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",
2023-08-01 15:30:31 -04:00
"cloud": "deno run -A --reload=http://localhost:4507 --no-lock ./run-deploy.tsx",
2023-08-01 10:19:39 -04:00
"debug": "deno run -A --reload=http://localhost:4507 --no-lock --inspect-wait ./run-serve.tsx --port=1234",
2023-06-07 17:09:40 -04:00
}
}