best-doctor/ke

View on GitHub
tsconfig.json

Summary

Maintainability
Test Coverage
{
  "include": [
    "src"
  ],
  "exclude": ["dist"],
  "compilerOptions": {
    "baseUrl": "src",
    "lib": [
      "DOM",
      "DOM.Iterable",
      "ES2019",
      "ES2020.Promise"
    ],
    "module": "ES6",
    "target": "ES6",
    "outDir": "dist/es",
    "rootDir": "src",
    "allowJs": false,
    "allowSyntheticDefaultImports": true,
    "allowUnreachableCode": false,
    "allowUnusedLabels": false,
    "declaration": true,
    "declarationDir": "./dist/es",
    "downlevelIteration": true,
    "experimentalDecorators": true,
    "forceConsistentCasingInFileNames": true,
    "importHelpers": true,
    "importsNotUsedAsValues": "preserve",
    "jsx": "react",
    "paths": {
      "@cdk/*": ["./django-spa/cdk/*"],
      "~types": ["./django-spa/types"],
      "@plugins/*": ["./django-spa/plugins/*"],
      "@components/*": ["./django-spa/components/*"],
      "@aspects/*": ["./django-spa/aspects/*"],
      "@layouts/*": ["./django-spa/layouts/*"],
      "@presenters/*": ["./django-spa/presenters/*"],
      "@smart-components/*": ["./django-spa/smart-components/*"],
      "@utils/*": ["./django-spa/utils/*"],
      "@test-utils/*": ["./django-spa/test-utils/*"],
      "@features": ["./features"]
    },
    "strict": true,
    "moduleResolution": "node",
    "noFallthroughCasesInSwitch": true,
    "noImplicitReturns": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "removeComments": true,
    "sourceMap": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "incremental": true
  }
}