the statusphere demo reworked into a vite/react app in a monorepo
at main 18 lines 392 B view raw
1{ 2 "compilerOptions": { 3 "target": "es2020", 4 "module": "NodeNext", 5 "moduleResolution": "NodeNext", 6 "esModuleInterop": true, 7 "forceConsistentCasingInFileNames": true, 8 "strict": true, 9 "skipLibCheck": true, 10 "baseUrl": ".", 11 "outDir": "dist", 12 "paths": { 13 "#/*": ["./src/*"] 14 } 15 }, 16 "include": ["src/**/*"], 17 "exclude": ["node_modules", "dist"] 18}