fix(ivy): remove custom tsconfig from render3 (#22913)

PR Close #22913
This commit is contained in:
Miško Hevery 2018-03-21 10:38:58 -07:00 committed by Matias Niemelä
parent b524e4b142
commit c84817970e
2 changed files with 1 additions and 3 deletions

View File

@ -14,8 +14,6 @@ ts_library(
"load_domino.ts",
],
),
# TODO(alexeagle): should not be different tsconfig
tsconfig = "//packages:tsconfig.json",
deps = [
"//packages:types",
"//packages/animations",

View File

@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {Attribute, ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChild, ContentChildren, Directive, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectableDef, Injector, InjectorDef, Input, NgModule, OnDestroy, Optional, Pipe, PipeTransform, QueryList, SimpleChanges, SkipSelf, TemplateRef, ViewChild, ViewChildren, ViewContainerRef, defineInjectable, defineInjector} from '../../../src/core';
import {Attribute, ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChild, ContentChildren, Directive, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectableDef, Injector, InjectorDef, Input, NgModule, OnDestroy, Optional, Pipe, PipeTransform, QueryList, SimpleChanges, SkipSelf, TemplateRef, ViewChild, ViewChildren, ViewContainerRef, defineInjectable, defineInjector, inject} from '../../../src/core';
import * as $r3$ from '../../../src/core_render3_private_export';
import {renderComponent, toHtml} from '../render_util';