[READ-ONLY] Mirror of https://github.com/flo-bit/flo-bit.github.io. my personal website, w/ astro, svelte, tailwind, typescript, threlte flo-bit.dev/
portfolio portfolio-website svelte sveltekit tailwind threejs threlte typescript
0

Configure Feed

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

flo-bit.github.io / tsconfig.json
428 B 17 lines
1{ 2 "extends": "astro/tsconfigs/strict", 3 "compilerOptions": { 4 "strictNullChecks": true, 5 "baseUrl": ".", 6 "paths": { 7 "$lib/*": ["src/lib/*"], 8 "$components/*": ["src/components/*"], 9 "$layouts/*": ["src/layouts/*"], 10 "$pages/*": ["src/pages/*"], 11 "$styles/*": ["src/styles/*"], 12 "$assets/*": ["src/assets/*"], 13 "$examples/*": ["src/examples/*"] 14 } 15 }, 16 "exclude": ["dist"] 17}