Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

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

at 3a75984654db888a95d657c181e4e2a1c3a46b2d 33 lines 690 B view raw
1{ 2 "compilerOptions": { 3 "jsx": "react-jsx", 4 "target": "ESNext", 5 "types": ["vite/client", "vite-plugin-svgr/client"], 6 "module": "esnext", 7 "strict": true, 8 "esModuleInterop": true, 9 "skipLibCheck": true, 10 "forceConsistentCasingInFileNames": true, 11 "lib": [ 12 "dom", 13 "dom.iterable", 14 "esnext" 15 ], 16 "allowJs": true, 17 "allowSyntheticDefaultImports": true, 18 "noFallthroughCasesInSwitch": true, 19 "moduleResolution": "node", 20 "resolveJsonModule": true, 21 "isolatedModules": true, 22 "noEmit": true, 23 "downlevelIteration": true, 24 "paths": { 25 "@/*": [ 26 "./src/*" 27 ] 28 } 29 }, 30 "include": [ 31 "src" 32 ] 33}