Implement WebFinger, rework TS

This commit is contained in:
Jesse Wierzbinski 2023-09-12 10:48:10 -10:00
parent 29f63dfcb7
commit c573052450
No known key found for this signature in database
GPG key ID: F9A1E418934E40B0
56 changed files with 560 additions and 239 deletions

View file

@ -18,6 +18,7 @@
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"types": [
"bun-types" // add Bun global
@ -25,6 +26,11 @@
"paths": {
"@*": ["./utils/*"],
"~*": ["./*"]
}
}
},
},
"include": [
"*.ts",
"**/*.ts",
"server/api/.well-known/**/*.ts"
]
}