[READ-ONLY] Mirror of https://github.com/mrgnw/yetki. Entitlements and access grants for apps on Cloudflare D1. Companion to d1dash. POC.
0

Configure Feed

Select the types of activity you want to include in your feed.

yetki / tsconfig.json
557 B 23 lines
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "ESNext", 5 "moduleResolution": "bundler", 6 "lib": ["ES2022"], 7 "outDir": "./dist", 8 "rootDir": "./src", 9 "declaration": true, 10 "declarationMap": true, 11 "sourceMap": true, 12 "strict": true, 13 "esModuleInterop": true, 14 "resolveJsonModule": true, 15 "skipLibCheck": true, 16 "forceConsistentCasingInFileNames": true, 17 "isolatedModules": true, 18 "verbatimModuleSyntax": true, 19 "types": ["bun"] 20 }, 21 "include": ["src/**/*"], 22 "exclude": ["node_modules", "dist", "**/*.test.ts", "src/_test/**"] 23}