{
  "compileOnSave": false,
  "exclude": [
    "node_modules/*",
    "node_modules.nosync/*",
    "ClientApp/assets/**/*.js",
    "ClientApp/vendor/**/*.js",
    "ClientApp/vendor/*.js",
    "dist",
    "frontend-common/node_modules.nosync/*",
    "frontend-common/node_modules/*",
    "frontend-common/dist"
  ],
  "include": [
    "./ClientApp/**/*",
    "./frontend-common/**/*",
    "script.ts",
    "i18n"
  ],
  "compilerOptions": {
    "downlevelIteration": true,
    "module": "ES2020",
    "outDir": "out-tsc",
    "strict": true,
    "allowSyntheticDefaultImports": true,
    "importHelpers": true,
    "strictNullChecks": false,
    "forceConsistentCasingInFileNames": true,
    "strictFunctionTypes": true,
    "declaration": false,
    "moduleResolution": "node",
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noUnusedLocals": true,
    "allowJs": true,
    "skipLibCheck": true,
    "pretty": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es2015",
    "baseUrl": "./",
    "resolveJsonModule": 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"
      ],
      "@yourcause/common/server": [
        "./node_modules/@yourcause/common/server/cjs/index.js"
      ],
      "@core/*": [
        "./ClientApp/app/core/*"
      ],
      "@features/*": [
        "./ClientApp/app/features/*"
      ],
      "@environment": [
        "./ClientApp/app/environments/environment"
      ]
    },
    "lib": [
      "es2020",
      "dom"
    ]
  },
  "angularCompilerOptions": {
    "fullTemplateTypeCheck": true,
    "strictTemplates": true
  }
}
