tsconfig.json raw

   1  /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
   2  /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
   3  {
   4    "compileOnSave": false,
   5    "compilerOptions": {
   6      "paths": {
   7        "@common": ["./common/src/public-api.ts"],
   8        "@common/*": ["./common/src/lib/*"]
   9      },
  10      "outDir": "./dist/out-tsc",
  11      "strict": true,
  12      "noImplicitAny": false,
  13      "strictNullChecks": false,
  14      "noImplicitOverride": true,
  15      "noPropertyAccessFromIndexSignature": true,
  16      "noImplicitReturns": true,
  17      "noFallthroughCasesInSwitch": true,
  18      "skipLibCheck": true,
  19      "isolatedModules": true,
  20      "esModuleInterop": true,
  21      "experimentalDecorators": true,
  22      "moduleResolution": "bundler",
  23      "importHelpers": true,
  24      "target": "ES2022",
  25      "module": "ES2022"
  26    },
  27    "angularCompilerOptions": {
  28      "enableI18nLegacyMessageIdFormat": false,
  29      "strictInjectionParameters": true,
  30      "strictInputAccessModifiers": true,
  31      "strictTemplates": true
  32    }
  33  }
  34