init deno

This commit is contained in:
Ean Milligan
2026-04-07 02:00:56 -04:00
parent ebdd81ee5e
commit 27d6e71b00
4 changed files with 170 additions and 0 deletions

30
deno.json Executable file
View File

@@ -0,0 +1,30 @@
{
"compilerOptions": {
"lib": ["deno.worker"],
"strict": true
},
"lint": {
"include": ["src/", "db/", "mod.ts", "deps.ts", "config.ts", "config.example.ts"],
"exclude": [],
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": []
}
},
"fmt": {
"include": ["src/", "db/", "mod.ts", "deps.ts", "config.ts", "config.example.ts"],
"exclude": [],
"lineWidth": 200,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve"
},
"nodeModulesDir": "none",
"imports": {
"@mysql": "https://deno.land/x/mysql@v2.12.1/mod.ts",
"@nanoid": "https://deno.land/x/nanoid@v3.0.0/mod.ts",
"@std/http": "jsr:@std/http@1.0.15",
"~config": "./config.ts"
}
}