https://github.com/angular/angular
Raw File
Tip revision: c71d687db4efff9a2bd05680726f0bab3183b85a authored by Jessica Janiuk on 05 June 2024, 19:53:44 UTC
release: cut the v18.0.2 release
Tip revision: c71d687
tsconfig.json
{
  "compilerOptions": {
    "target": "es2020",
    "module": "es2020",
    "moduleResolution": "node",
    "declaration": false,
    "removeComments": true,
    "noLib": false,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "lib": ["es2020", "dom"],
    "sourceMap": true,
    "pretty": true,
    "allowUnreachableCode": false,
    "allowUnusedLabels": false,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noImplicitUseStrict": false,
    "noFallthroughCasesInSwitch": true,
    "outDir": "./dist",
    "types": [
    ]
  },
  "files": [
    "src/main.ts",
    "src/lazy.module.ts"
  ]
}
back to top