feat(compiler-cli): add a debug
option to control the output
fixes #9208
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import * as ts from 'typescript';
|
||||
|
||||
import {Evaluator, ImportMetadata, ImportSpecifierMetadata, errorSymbol, isPrimitive} from './evaluator';
|
||||
import {Evaluator, errorSymbol, isPrimitive} from './evaluator';
|
||||
import {ClassMetadata, ConstructorMetadata, MemberMetadata, MetadataError, MetadataMap, MetadataSymbolicExpression, MetadataSymbolicReferenceExpression, MetadataValue, MethodMetadata, ModuleMetadata, VERSION, isMetadataError, isMetadataSymbolicReferenceExpression} from './schema';
|
||||
import {Symbols} from './symbols';
|
||||
|
||||
|
@ -15,6 +15,9 @@ interface Options extends ts.CompilerOptions {
|
||||
|
||||
// Print extra information while running the compiler
|
||||
trace: boolean;
|
||||
|
||||
// Whether to embed debug information in the compiled templates
|
||||
debug?: boolean;
|
||||
}
|
||||
|
||||
export default Options;
|
||||
|
Reference in New Issue
Block a user