https://github.com/angular/angular
Revision 3d4548450a1393becc7ea244d16cea4d99b05393 authored by Alex Rickabaugh on 22 April 2022, 21:29:23 UTC, committed by Andrew Scott on 27 April 2022, 17:25:53 UTC
This commit adds support for `@Component.schemas` in both JIT and AOT.

PR Close #45752
1 parent 2eb39c0
Raw File
Tip revision: 3d4548450a1393becc7ea244d16cea4d99b05393 authored by Alex Rickabaugh on 22 April 2022, 21:29:23 UTC
refactor(compiler-cli): support schemas in standalone components (#45752)
Tip revision: 3d45484
tsconfig.json
{
  "compileOnSave": false,
  "compilerOptions": {
    "plugins": [
      {
        "name": "@bazel/tsetse",
        "disabledRules": [
          "must-type-assert-json-parse"
        ]
      }
    ],
    "baseUrl": "../",
    "outDir": "bazel-out/darwin-fastbuild/bin",
    "sourceMap": true,
    "declaration": true,
    "strictNullChecks": true,
    "downlevelIteration": true,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "module": "esnext",
    "moduleResolution": "node",
    "esModuleInterop": true,
    "importHelpers": true,
    "target": "es2020",
    "lib": ["es2020", "dom"],
    "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": {
    "fullTemplateTypeCheck": true,
    "strictInjectionParameters": true,
    "enableIvy": true
  }
}
back to top