https://github.com/angular/angular
Raw File
Tip revision: dd0722fd1fa6f6fa4ea92370b2b4d6845edb49fa authored by Dylan Hunn on 05 October 2021, 00:22:05 UTC
release: cut the v13.0.0-next.11 release (#43707)
Tip revision: dd0722f
tsconfig.app.json
{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "outDir": "./out-tsc/app",
    "types": [
      "trusted-types"
    ],
    "plugins": [
      {
        "name": "tsec",
        "exemptionConfig": "./security-exemptions.json"
      }
    ]
  },
  "files": [
    "src/main.ts",
    "src/polyfills.ts"
  ],
  "include": [
    "src/**/*.d.ts"
  ]
}
back to top