feat: create route to return title information

Summary:

Test Plan:
This commit is contained in:
2024-05-15 23:03:08 -04:00
parent 695a1bb4cd
commit 68c082493e
18 changed files with 1367 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"compilerOptions": {
"types": ["@cloudflare/workers-types"],
"types": ["@cloudflare/workers-types", "@types/bun"],
"baseUrl": "./",
"paths": {
"~/*": ["src/*"]
@@ -25,6 +25,15 @@
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": true
"noPropertyAccessFromIndexSignature": true,
// plugins
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schema": "https://graphql.anilist.co",
"tadaOutputLocation": "./src/types/anilist-graphql.d.ts"
}
]
}
}