{ "compilerOptions": { /* Language and Environment */ "target": "ES2022", "lib": [ "dom", "dom.iterable", "esnext" ], "jsx": "preserve", /* Modules */ "module": "esnext", "moduleResolution": "bundler", "resolveJsonModule": true, "allowJs": true, "isolatedModules": true, "noEmit": true, /* Interop Constraints */ "esModuleInterop": true, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, /* Type Checking - Strict Mode */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "noUncheckedIndexedAccess": true, "exactOptionalPropertyTypes": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "allowUnusedLabels": false, "allowUnreachableCode": false, /* Completeness */ "skipLibCheck": true, /* Path Aliases */ "baseUrl": ".", "paths": { "@/*": [ "./src/*" ], "@/components/*": [ "./src/components/*" ], "@/lib/*": [ "./src/lib/*" ], "@/hooks/*": [ "./src/hooks/*" ], "@/store/*": [ "./src/store/*" ], "@/types/*": [ "./src/types/*" ], "@/styles/*": [ "./src/styles/*" ], "@/app/*": [ "./src/app/*" ], "@math-platform/shared-types": [ "../shared/types/src" ], "@math-platform/shared-types/*": [ "../shared/types/src/*" ] }, "incremental": true, "plugins": [ { "name": "next" } ] }, "include": [ "src", ".next/types/**/*.ts" ], "exclude": [ "node_modules", ".next", "out", "dist", "build", "**/*.test.ts", "**/*.test.tsx", "src/test/**/*" ] }