https://github.com/angular/angular
Raw File
Tip revision: 6928618fd75a7b34a5fa5e43a42d21c8a96e9903 authored by Alex Rickabaugh on 01 May 2023, 17:25:36 UTC
release: cut the v16.0.0-rc.4 release
Tip revision: 6928618
tsconfig-tsec-base.json
/** Root tsconfig file for checking Angular packages with tsec. */
{
  "extends": "./tsconfig-build.json",
  "compilerOptions": {
    "noEmit": true,
    "lib": ["es2020", "dom"],
    "plugins": [{"name": "tsec", "exemptionConfig": "./tsec-exemption.json"}]
  }
}
back to top