| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "compilerOptions": {
- /* Language and Environment */
- "target": "ES2022",
- "lib": ["ES2022"],
-
- /* Modules */
- "module": "ESNext",
- "moduleResolution": "bundler",
- "resolveJsonModule": true,
-
- /* Emit */
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
- "outDir": "./dist",
- "removeComments": true,
- "importHelpers": false,
-
- /* Interop Constraints */
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
-
- /* Type Checking */
- "strict": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictBindCallApply": true,
- "strictPropertyInitialization": true,
- "noImplicitThis": true,
- "alwaysStrict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexedAccess": true,
- "noImplicitOverride": true,
- "noPropertyAccessFromIndexSignature": false,
-
- /* Completeness */
- "skipLibCheck": true
- },
- "include": [
- "src/**/*"
- ],
- "exclude": [
- "node_modules",
- "dist",
- "**/*.test.ts",
- "**/*.spec.ts"
- ]
- }
|