A framework-agnostic, universal document renderer with optional chunked loading polyrender.wisp.place/
6
fork

Configure Feed

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

a littel bit of tweaking

aria da4eb060 c6b2122f

+11 -3
+4
pnpm-workspace.yaml
··· 1 1 packages: 2 2 - "packages/*" 3 3 - "examples/*" 4 + allowBuilds: 5 + core-js: true 6 + es5-ext: true 7 + esbuild: true
+7 -3
tsconfig.base.json
··· 1 1 { 2 2 "compilerOptions": { 3 - "target": "ES2022", 3 + "target": "ES2023", 4 4 "module": "ESNext", 5 5 "moduleResolution": "bundler", 6 - "lib": ["ES2022", "DOM", "DOM.Iterable"], 6 + "lib": [ 7 + "ES2023", 8 + "DOM", 9 + "DOM.Iterable" 10 + ], 7 11 "strict": true, 8 12 "esModuleInterop": true, 9 13 "skipLibCheck": true, ··· 14 18 "declarationMap": true, 15 19 "sourceMap": true 16 20 } 17 - } 21 + }