able-baker/deno.jsonc

24 lines
712 B
Plaintext
Raw Normal View History

2023-08-01 17:23:19 -04:00
{
2023-08-13 11:00:48 -04:00
"imports": {
"react": "https://esm.sh/preact@10.16.0/compat",
"react/": "https://esm.sh/preact@10.16.0/compat/",
2023-08-28 22:16:56 -04:00
">able/": "http://localhost:4507/",
2023-08-13 22:58:15 -04:00
">able/app.tsx": "./app.tsx"
2023-08-13 11:00:48 -04:00
},
2023-08-28 22:16:56 -04:00
"tasks": {
"check": "deno run -A --no-lock http://localhost:4507/cli.tsx check",
"local": "deno run -A --no-lock http://localhost:4507/cli.tsx local",
"debug": "deno run -A --no-lock http://localhost:4507/cli.tsx debug",
"serve": "deno run -A --no-lock http://localhost:4507/cli.tsx serve",
"cloud": "deno run -A --no-lock http://localhost:4507/cli.tsx cloud"
},
2023-08-13 11:00:48 -04:00
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"lib": [
"deno.window",
"dom",
"dom.asynciterable"
]
}
2023-08-01 17:23:19 -04:00
}