1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | (function (factory) {
|
---|
9 | if (typeof module === "object" && typeof module.exports === "object") {
|
---|
10 | var v = factory(require, exports);
|
---|
11 | if (v !== undefined) module.exports = v;
|
---|
12 | }
|
---|
13 | else if (typeof define === "function" && define.amd) {
|
---|
14 | define("@angular/compiler-cli/src/ngtsc/incremental", ["require", "exports", "tslib", "@angular/compiler-cli/src/ngtsc/incremental/src/incremental", "@angular/compiler-cli/src/ngtsc/incremental/src/noop", "@angular/compiler-cli/src/ngtsc/incremental/src/state", "@angular/compiler-cli/src/ngtsc/incremental/src/strategy"], factory);
|
---|
15 | }
|
---|
16 | })(function (require, exports) {
|
---|
17 | "use strict";
|
---|
18 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
19 | exports.IncrementalStateKind = exports.NOOP_INCREMENTAL_BUILD = exports.IncrementalCompilation = void 0;
|
---|
20 | var tslib_1 = require("tslib");
|
---|
21 | var incremental_1 = require("@angular/compiler-cli/src/ngtsc/incremental/src/incremental");
|
---|
22 | Object.defineProperty(exports, "IncrementalCompilation", { enumerable: true, get: function () { return incremental_1.IncrementalCompilation; } });
|
---|
23 | var noop_1 = require("@angular/compiler-cli/src/ngtsc/incremental/src/noop");
|
---|
24 | Object.defineProperty(exports, "NOOP_INCREMENTAL_BUILD", { enumerable: true, get: function () { return noop_1.NOOP_INCREMENTAL_BUILD; } });
|
---|
25 | var state_1 = require("@angular/compiler-cli/src/ngtsc/incremental/src/state");
|
---|
26 | Object.defineProperty(exports, "IncrementalStateKind", { enumerable: true, get: function () { return state_1.IncrementalStateKind; } });
|
---|
27 | tslib_1.__exportStar(require("@angular/compiler-cli/src/ngtsc/incremental/src/strategy"), exports);
|
---|
28 | });
|
---|
29 | //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21waWxlci1jbGkvc3JjL25ndHNjL2luY3JlbWVudGFsL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7R0FNRzs7Ozs7Ozs7Ozs7Ozs7SUFFSCwyRkFBeUQ7SUFBakQscUhBQUEsc0JBQXNCLE9BQUE7SUFDOUIsNkVBQWtEO0lBQTFDLDhHQUFBLHNCQUFzQixPQUFBO0lBQzlCLCtFQUEySTtJQUF6Qyw2R0FBQSxvQkFBb0IsT0FBQTtJQUV0SCxtR0FBK0IiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuZXhwb3J0IHtJbmNyZW1lbnRhbENvbXBpbGF0aW9ufSBmcm9tICcuL3NyYy9pbmNyZW1lbnRhbCc7XG5leHBvcnQge05PT1BfSU5DUkVNRU5UQUxfQlVJTER9IGZyb20gJy4vc3JjL25vb3AnO1xuZXhwb3J0IHtBbmFseXplZEluY3JlbWVudGFsU3RhdGUsIERlbHRhSW5jcmVtZW50YWxTdGF0ZSwgRnJlc2hJbmNyZW1lbnRhbFN0YXRlLCBJbmNyZW1lbnRhbFN0YXRlLCBJbmNyZW1lbnRhbFN0YXRlS2luZH0gZnJvbSAnLi9zcmMvc3RhdGUnO1xuXG5leHBvcnQgKiBmcm9tICcuL3NyYy9zdHJhdGVneSc7XG4iXX0= |
---|