Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at main 23 lines 516 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2020", 4 "module": "ESNext", 5 "moduleResolution": "bundler", 6 "allowSyntheticDefaultImports": true, 7 "esModuleInterop": true, 8 "skipLibCheck": true, 9 "strict": true, 10 "outDir": "./dist", 11 "rootDir": "./src", 12 "declaration": true, 13 "declarationMap": true, 14 "sourceMap": true 15 }, 16 "include": ["src/**/*"], 17 "exclude": ["node_modules", "dist"], 18 "ts-node": { 19 "logError": true, 20 "pretty": true /* <= technically not required */ 21 } 22} 23