this repo has no description
0
fork

Configure Feed

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

at main 22 lines 520 B view raw
1{ 2 "compilerOptions": { 3 "lib": ["ESNext"], 4 "module": "esnext", 5 "target": "esnext", 6 "moduleResolution": "bundler", 7 "moduleDetection": "force", 8 "allowImportingTsExtensions": true, 9 "noEmit": true, 10 "composite": true, 11 "strict": true, 12 "downlevelIteration": true, 13 "skipLibCheck": true, 14 "jsx": "react-jsx", 15 "allowSyntheticDefaultImports": true, 16 "forceConsistentCasingInFileNames": true, 17 "allowJs": true, 18 "types": [ 19 "bun-types" // add Bun global 20 ] 21 } 22}