initial commit

This commit is contained in:
laura 2025-11-08 01:40:06 -03:00
commit 3d733cfe0b
Signed by: w
GPG key ID: BCD2117C99E69817
11 changed files with 685 additions and 0 deletions

21
deno.json Normal file
View file

@ -0,0 +1,21 @@
{
"tasks": {},
"imports": {
"cobweb/jsx-runtime": "./src/jsx.ts"
},
"fmt": {
"useTabs": true,
"semiColons": true
},
"lint": {
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any", "require-await"]
}
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "cobweb",
"lib": ["deno.ns", "esnext", "dom", "dom.iterable"]
}
}