Add bait mode, fix bugs

This commit is contained in:
Jesse Wierzbinski 2024-03-12 22:10:32 -10:00
parent d633116571
commit 480fcb363f
No known key found for this signature in database
14 changed files with 1627 additions and 236 deletions

View file

@ -22,7 +22,7 @@
"experimentalDecorators": true,
"verbatimModuleSyntax": true,
"types": [
"bun-types" // add Bun global
"bun-types", // add Bun global
],
"paths": {
"@*": ["./utils/*"],
@ -32,9 +32,11 @@
},
"include": [
"*.ts",
"*.d.ts",
"*.vue",
"**/*.ts",
"**/*.d.ts",
"**/*.vue",
"server/api/.well-known/**/*.ts"
"server/api/.well-known/**/*.ts",
]
}