https://github.com/angular/angular
Raw File
Tip revision: 59680c2644456f9d48b78e713f7f225dfb5bb289 authored by Andrew Kushnir on 20 January 2021, 18:30:35 UTC
release: cut the v11.1.0 release
Tip revision: 59680c2
tsconfig-app.json
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "lib": ["es2015", "dom"],
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "outDir": "dist",
    "types": ["node"],
    "rootDir": "."
  },
  "angularCompilerOptions": {
    "enableIvy": false,
  },
  "files": [
    "src/app.ts",
    "src/main.ts"
  ]
}
back to top