https://github.com/angular/angular
Raw File
Tip revision: b6fb5b7fa9a3b2d3e9b3ca833f94525adc0c31b1 authored by Pawel Kozlowski on 10 July 2024, 13:38:44 UTC
release: cut the v18.2.0-next.0 release
Tip revision: b6fb5b7
tsconfig.json
{
  "compileOnSave": false,
  "compilerOptions": {
    "baseUrl": "../",
    "outDir": "bazel-out/darwin-fastbuild/bin",
    "sourceMap": true,
    "declaration": true,
    "strict": true,
    "noImplicitReturns": true,
    "noPropertyAccessFromIndexSignature": true,
    "downlevelIteration": true,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "module": "esnext",
    "moduleResolution": "node",
    "esModuleInterop": true,
    "importHelpers": true,
    "target": "es2020",
    "lib": ["es2020", "dom", "dom.iterable"],
    "typeRoots": [
      "./devtools/node_modules/@types",
    ],
    "types": [
      "angular",
      "jasmine",
      "node"
    ],
    "paths": {
      "@angular/*": [
        "./packages/*",
        "./dist/bin/packages/*"
      ],
      "ng-devtools": [
        "./devtools/projects/ng-devtools/src/public-api.ts",
      ],
      "ng-devtools-backend": [
        "./devtools/projects/ng-devtools-backend/src/public-api.ts",
      ],
      "protocol": [
        "./devtools/projects/protocol/src/public-api.ts",
      ],
      "shared-utils": [
        "./devtools/projects/shared-utils/src/public-api.ts",
      ]
    },
  },
  "angularCompilerOptions": {
    "strictTemplates": true,
    "strictInjectionParameters": true
  }
}
back to top