https://github.com/angular/angular
Raw File
Tip revision: 77329b70a088d226eb0f9c3e1171d9fdc9e31c3f authored by Ben Hong on 12 March 2024, 19:18:54 UTC
docs: fix missing security guide in navigation (#54830)
Tip revision: 77329b7
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",
  ],
  "include": [
    "src/**/*.d.ts"
  ]
}
back to top