a programming education platform www.hypercommit.com
education
1
fork

Configure Feed

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

at master 23 lines 418 B view raw
1{ 2 "extends": "@workspace/typescript-config/nextjs.json", 3 "compilerOptions": { 4 "baseUrl": ".", 5 "paths": { 6 "@/*": ["./*"], 7 "@workspace/ui/*": ["../../packages/ui/src/*"] 8 }, 9 "plugins": [ 10 { 11 "name": "next" 12 } 13 ] 14 }, 15 "include": [ 16 "next-env.d.ts", 17 "next.config.ts", 18 "**/*.ts", 19 "**/*.tsx", 20 ".next/types/**/*.ts" 21 ], 22 "exclude": ["node_modules"] 23}