TypeScript 93.3%
JavaScript 4.4%
CSS 2.3%
1{2 // Author: Simon-Pierre Boucher3 // Contact: contact@spboucher.ai4 // Project: Hilmacorp.ai — Web Platform5 // File: tsconfig.json6 // Description: TypeScript strict configuration for the Next.js App Router project7 "compilerOptions": {8 "target": "ES2022",9 "lib": ["dom", "dom.iterable", "esnext"],10 "allowJs": true,11 "skipLibCheck": true,12 "strict": true,13 "noEmit": true,14 "esModuleInterop": true,15 "module": "esnext",16 "moduleResolution": "bundler",17 "resolveJsonModule": true,18 "isolatedModules": true,19 "jsx": "preserve",20 "incremental": true,21 "plugins": [{ "name": "next" }],22 "paths": { "@/*": ["./*"] }23 },24 "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],25 "exclude": ["node_modules"]26}27