40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
/**
|
|
* @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 * as ts from 'typescript';
|
|
|
|
interface Options extends ts.CompilerOptions {
|
|
// Absolute path to a directory where generated file structure is written
|
|
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.ts or .css.shim.ts files
|
|
skipTemplateCodegen: boolean;
|
|
|
|
// Whether to generate code for library code.
|
|
// If true, produce .ngfactory.ts and .css.shim.ts files for .d.ts inputs.
|
|
// Default is true.
|
|
generateCodeForLibraries?: boolean;
|
|
|
|
// Print extra information while running the compiler
|
|
trace: boolean;
|
|
|
|
// Whether to embed debug information in the compiled templates
|
|
debug?: boolean;
|
|
}
|
|
|
|
export default Options;
|