Sifa professional network frontend (Next.js, React, TailwindCSS) sifa.id/
at main 37 lines 779 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2017", 4 "lib": ["dom", "dom.iterable", "esnext"], 5 "allowJs": true, 6 "skipLibCheck": true, 7 "strict": true, 8 "noEmit": true, 9 "esModuleInterop": true, 10 "module": "esnext", 11 "moduleResolution": "bundler", 12 "resolveJsonModule": true, 13 "isolatedModules": true, 14 "noUncheckedIndexedAccess": true, 15 "noImplicitReturns": true, 16 "noFallthroughCasesInSwitch": true, 17 "jsx": "react-jsx", 18 "incremental": true, 19 "plugins": [ 20 { 21 "name": "next" 22 } 23 ], 24 "paths": { 25 "@/*": ["./src/*"] 26 } 27 }, 28 "include": [ 29 "next-env.d.ts", 30 "**/*.ts", 31 "**/*.tsx", 32 ".next/types/**/*.ts", 33 ".next/dev/types/**/*.ts", 34 "**/*.mts" 35 ], 36 "exclude": ["node_modules"] 37}