first commit

This commit is contained in:
Daniel Ledda
2024-10-30 20:42:01 +01:00
commit e6f20af28d
13 changed files with 556 additions and 0 deletions

23
deno.json Normal file
View File

@@ -0,0 +1,23 @@
{
"tasks": {
"start": "deno --allow-read --allow-net --allow-env --allow-write --allow-run main.ts",
"watch": "deno --watch --allow-read --allow-net --allow-env --allow-write --allow-run main.ts"
},
"fmt": {
"lineWidth": 120,
"indentWidth": 4
},
"imports": {
"@stock3/koala": "npm:@stock3/koala@^15.3.8-esm.0",
"vue": "npm:vue@^3.5.12",
"vue/jsx-runtime": "npm:vue/jsx-runtime",
"@/": "./app/"
},
"nodeModulesDir": "auto",
"compilerOptions": {
"jsx": "react-jsx",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"jsxImportSource": "vue"
}
}