| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "extends": "../../../tsconfig.json",
- "compilerOptions": {
- "strict": true,
- "noImplicitAny": true,
- "noImplicitThis": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictBindCallApply": true,
- "strictPropertyInitialization": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexedAccess": true,
- "exactOptionalPropertyTypes": true,
- "noImplicitOverride": true,
- "noPropertyAccessFromIndexSignature": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "allowUnreachableCode": false,
- "allowUnusedLabels": false,
- "baseUrl": ".",
- "paths": {
- "@/*": ["../../../src/*"],
- "@/core/*": ["../../../src/core/*"],
- "@/types/*": ["../../../src/types/*"],
- "@/utils/*": ["../../../src/utils/*"],
- "@/adapters/*": ["../../../src/adapters/*"]
- }
- },
- "include": [
- "./**/*"
- ],
- "exclude": [
- "node_modules",
- "dist",
- "build",
- "**/*.test.ts",
- "**/*.spec.ts"
- ]
- }
|