Initial setup

This commit is contained in:
Peter Stockings
2025-07-26 11:55:35 +10:00
commit ab802a8af1
6 changed files with 292 additions and 0 deletions

28
deno.jsonc Normal file
View File

@@ -0,0 +1,28 @@
{
"compilerOptions": {
"lib": ["deno.window", "deno.worker"]
},
"lint": {
"files": {
"include": ["./*.ts"]
},
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"files": {
"include": ["./*.ts"]
},
"options": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"singleQuote": false
}
},
"tasks": {
"start": "deno run --allow-net --allow-read --unstable-worker-options deno_server.ts"
}
}