20 lines
443 B
JSON
20 lines
443 B
JSON
{
|
|
"tasks": {
|
|
"dev": "deno -A --unstable-bundle --watch server.ts"
|
|
},
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"lib": [
|
|
"deno.window", "dom", "dom.asynciterable"
|
|
]
|
|
},
|
|
"imports": {
|
|
"react":"https://esm.sh/react@19.2.0",
|
|
"react/":"https://esm.sh/react@19.2.0/",
|
|
"react-dom/":"https://esm.sh/react-dom@19.2.0/",
|
|
"react-original": "https://esm.sh/react@19.2.0"
|
|
}
|
|
}
|
|
|