| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "$schema": "https://json.schemastore.org/tsconfig",
- "compilerOptions": {
- "target": "ES2022",
- "lib": ["ES2023"],
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "allowJs": false,
- "checkJs": false,
- "skipLibCheck": true,
- "strict": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictBindCallApply": true,
- "strictPropertyInitialization": true,
- "noImplicitThis": true,
- "alwaysStrict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true,
- "noImplicitReturns": true,
- "noUncheckedIndexedAccess": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- "isolatedModules": true,
- "verbatimModuleSyntax": false,
- "incremental": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true
- },
- "exclude": ["node_modules", "dist", "build", ".next", ".turbo"]
- }
|