https://github.com/angular/angular
Raw File
Tip revision: ca517d7f2c38775969a65fde1d88f41ad5f27931 authored by Joey Perrott on 18 April 2024, 17:34:33 UTC
refactor: migrate language-service to prettier formatting (#55405)
Tip revision: ca517d7
tsconfig.json
{
  "compileOnSave": false,
  "compilerOptions": {
    "baseUrl": "./",
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "module": "esnext",
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "importHelpers": true,
    "target": "es2015",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2018",
      "dom"
    ]
  }
}
back to top