https://github.com/angular/angular
Raw File
Tip revision: 31acfa11bbbfcdd6abd6311b877b64396486ea35 authored by Alex Rickabaugh on 25 May 2022, 20:27:23 UTC
release: cut the v13.3.10 release (#46141)
Tip revision: 31acfa1
tsconfig-app.json
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "lib": ["es2015", "dom"],
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "outDir": "dist",
    "types": ["node"],
    "rootDir": "."
  },
  "files": [
    "src/main.ts"
  ],
  "angularCompilerOptions": {
    "enableIvy": "ngtsc"
  }
}
back to top