https://github.com/angular/angular
Raw File
Tip revision: 018750154d730140e749a96f69797040a3121e90 authored by Igor Minar on 04 May 2018, 22:08:17 UTC
test: fix firebase deployment script test
Tip revision: 0187501
tsconfig-build.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "declaration": true,
    "stripInternal": true,
    "experimentalDecorators": true,
    "strictNullChecks": true,
    "module": "es2015",
    "moduleResolution": "node",
    "outDir": "../../dist/packages/platform-server",
    "paths": {
      "@angular/animations/browser": ["../../dist/packages/animations/browser"],
      "@angular/core": ["../../dist/packages/core"],
      "@angular/common": ["../../dist/packages/common"],
      "@angular/common/http": ["../../dist/packages/common/http"],
      "@angular/compiler": ["../../dist/packages/compiler"],
      "@angular/http": ["../../dist/packages/http"],
      "@angular/platform-browser": ["../../dist/packages/platform-browser"],
      "@angular/platform-browser/animations": ["../../dist/packages/platform-browser/animations"],
      "@angular/platform-browser-dynamic": ["../../dist/packages/platform-browser-dynamic"]
    },
    "rootDir": ".",
    "sourceMap": true,
    "inlineSources": true,
    "target": "es2015",
    "skipLibCheck": true,
    "lib": ["es2015", "dom"],
    // don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
    "types": []
  },
  "files": [
    "public_api.ts",
    "../../node_modules/@types/node/index.d.ts",
    "../../node_modules/zone.js/dist/zone.js.d.ts"
  ],
  "angularCompilerOptions": {
    "annotateForClosureCompiler": true,
    "strictMetadataEmit": true,
    "flatModuleOutFile": "index.js",
    "flatModuleId": "@angular/platform-server"
  }
}
back to top