/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import {GeneratedFile, ParseSourceSpan, Position} from '@angular/compiler'; import * as ts from 'typescript'; export const DEFAULT_ERROR_CODE = 100; export const UNKNOWN_ERROR_CODE = 500; export const SOURCE = 'angular' as 'angular'; export interface DiagnosticMessageChain { messageText: string; position?: Position; next?: DiagnosticMessageChain; } export interface Diagnostic { messageText: string; span?: ParseSourceSpan; position?: Position; chain?: DiagnosticMessageChain; category: ts.DiagnosticCategory; code: number; source: 'angular'; } export function isTsDiagnostic(diagnostic: any): diagnostic is ts.Diagnostic { return diagnostic != null && diagnostic.source !== 'angular'; } export function isNgDiagnostic(diagnostic: any): diagnostic is Diagnostic { return diagnostic != null && diagnostic.source === 'angular'; } export interface CompilerOptions extends ts.CompilerOptions { // NOTE: These comments and aio/content/guides/aot-compiler.md should be kept in sync. // Write statistics about compilation (e.g. total time, ...) // Note: this is the --diagnostics command line option from TS (which is @internal // on ts.CompilerOptions interface). diagnostics?: boolean; // Absolute path to a directory where generated file structure is written. // If unspecified, generated files will be written alongside sources. // @deprecated - no effect genDir?: string; // Path to the directory containing the tsconfig.json file. basePath?: string; // Don't produce .metadata.json files (they don't work for bundled emit with --out) skipMetadataEmit?: boolean; // Produce an error if the metadata written for a class would produce an error if used. strictMetadataEmit?: boolean; // Don't produce .ngfactory.js or .ngstyle.js files skipTemplateCodegen?: boolean; // Always report errors when the type of a parameter supplied whose injection type cannot // be determined. When this value option is not provided or is `false`, constructor // parameters of classes marked with `@Injectable` whose type cannot be resolved will // produce a warning. With this option `true`, they produce an error. When this option is // not provided is treated as if it were `false`. In Angular 6.0, if this option is not // provided, it will be treated as `true`. strictInjectionParameters?: boolean; // Whether to generate a flat module index of the given name and the corresponding // flat module metadata. This option is intended to be used when creating flat // modules similar to how `@angular/core` and `@angular/common` are packaged. // When this option is used the `package.json` for the library should refered to the // generated flat module index instead of the library index file. When using this // option only one .metadata.json file is produced that contains all the metadata // necessary for symbols exported from the library index. // In the generated .ngfactory.ts files flat module index is used to import symbols // includes both the public API from the library index as well as shrowded internal // symbols. // By default the .ts file supplied in the `files` files field is assumed to be // library index. If more than one is specified, uses `libraryIndex` to select the // file to use. If more than on .ts file is supplied and no `libraryIndex` is supplied // an error is produced. // A flat module index .d.ts and .js will be created with the given `flatModuleOutFile` // name in the same location as the library index .d.ts file is emitted. // For example, if a library uses `public_api.ts` file as the library index of the // module the `tsconfig.json` `files` field would be `["public_api.ts"]`. The // `flatModuleOutFile` options could then be set to, for example `"index.js"`, which // produces `index.d.ts` and `index.metadata.json` files. The library's // `package.json`'s `module` field would be `"index.js"` and the `typings` field would // be `"index.d.ts"`. flatModuleOutFile?: string; // Preferred module id to use for importing flat module. References generated by `ngc` // will use this module name when importing symbols from the flat module. This is only // meaningful when `flatModuleOutFile` is also supplied. It is otherwise ignored. flatModuleId?: string; // Whether to generate code for library code. // If true, produce .ngfactory.ts and .ngstyle.ts files for .d.ts inputs. // Default is true. generateCodeForLibraries?: boolean; // Whether to enable all type checks for templates. // This will be true be default in Angular 6. fullTemplateTypeCheck?: boolean; // Insert JSDoc type annotations needed by Closure Compiler annotateForClosureCompiler?: boolean; // Modify how angular annotations are emitted to improve tree-shaking. // Default is static fields. // decorators: Leave the Decorators in-place. This makes compilation faster. // TypeScript will emit calls to the __decorate helper. // `--emitDecoratorMetadata` can be used for runtime reflection. // However, the resulting code will not properly tree-shake. // static fields: Replace decorators with a static field in the class. // Allows advanced tree-shakers like Closure Compiler to remove // unused classes. annotationsAs?: 'decorators'|'static fields'; // Print extra information while running the compiler trace?: boolean; // Whether to enable support for