Files
aniplay-api/tsconfig.json
2024-05-15 23:03:17 -04:00

40 lines
858 B
JSON

{
"compilerOptions": {
"types": ["@cloudflare/workers-types", "@types/bun"],
"baseUrl": "./",
"paths": {
"~/*": ["src/*"]
},
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": true,
// plugins
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schema": "https://graphql.anilist.co",
"tadaOutputLocation": "./src/types/anilist-graphql.d.ts"
}
]
}
}