[READ-ONLY] Mirror of https://github.com/flo-bit/atproto-notify.
0

Configure Feed

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

atproto-notify / tsconfig.base.json
691 B 28 lines
1{ 2 "$schema": "https://json.schemastore.org/tsconfig", 3 "compilerOptions": { 4 "target": "ES2022", 5 "lib": ["ES2022"], 6 "module": "ESNext", 7 "moduleResolution": "Bundler", 8 "moduleDetection": "force", 9 "verbatimModuleSyntax": true, 10 "resolveJsonModule": true, 11 "isolatedModules": true, 12 13 "strict": true, 14 "noUncheckedIndexedAccess": true, 15 "noImplicitOverride": true, 16 "noFallthroughCasesInSwitch": true, 17 "forceConsistentCasingInFileNames": true, 18 19 "declaration": true, 20 "declarationMap": true, 21 "sourceMap": true, 22 "composite": true, 23 24 "skipLibCheck": true, 25 "esModuleInterop": true, 26 "allowSyntheticDefaultImports": true 27 } 28}