{
  "compileOnSave": false,
  "extends": "./tsconfig.json",
  "include": [
    "./ClientApp/**/*.ts"
  ],
  "compilerOptions": {
    "outDir": "./dist/out-tsc",
    "baseUrl": "./",
    "declaration": false,
    "moduleResolution": "node",
    "module": "commonjs",
    "target": "es2020",
    "emitDecoratorMetadata": true,
    "importHelpers": true,
    "resolveJsonModule": true,
    "esModuleInterop": true,
    "experimentalDecorators": true,
    "paths": {
      "@yourcause/common/testing": [
        "./frontend-common/testing/src/public_api.ts"
      ],
      "@yourcause/common": [
        "./frontend-common/src/public_api.ts",
        "./node_modules/@yourcause/common/fesm2015/yourcause-common.js"
      ],
      "@yourcause/common/*": [
        "./frontend-common/*/src/public_api.ts",
        "./node_modules/@yourcause/common/fesm2015/yourcause-common-*.js"
      ],
      "@core/*": [
        "./ClientApp/app/core/*"
      ],
      "@features/*": [
        "./ClientApp/app/features/*"
      ],
      "@environment": [
        "./ClientApp/app/environments/environment"
      ]
    },
    "lib": [
      "es2020",
      "dom"
    ]
  }
}