https://github.com/angular/angular
Raw File
Tip revision: 652ac79d639b340060919b38de18b22f68712c2a authored by Greg Magolan on 16 October 2018, 20:20:00 UTC
build: idiomatic install of @angular/bazel npm package (#26258)
Tip revision: 652ac79
tsconfig-app.json
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "lib": ["es2015", "dom"],
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "outDir": "dist",
    "types": ["node"],
    "rootDir": "."
  },
  "files": [
    "src/app.ts",
    "src/main.ts"
  ]
}
back to top