the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

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

at 8dc31519c664bfb79e215fe5fabc2eaa8cd08e78 20 lines 453 B view raw
1{ 2 "compilerOptions": { 3 "target": "ESNext", 4 "module": "CommonJS", 5 "baseUrl": ".", 6 "paths": { 7 "#/*": ["src/*"] 8 }, 9 "moduleResolution": "Node10", 10 "outDir": "dist", 11 "importsNotUsedAsValues": "remove", 12 "strict": true, 13 "esModuleInterop": true, 14 "skipLibCheck": true, 15 "forceConsistentCasingInFileNames": true, 16 "types": ["vitest/globals"] 17 }, 18 "include": ["src/**/*"], 19 "exclude": ["node_modules"] 20}