File tree 6 files changed +1
-15
lines changed
tests/baselines/reference
showConfig/Shows tsconfig for single option/disableLazyShapeComputation
6 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ namespace ts {
341
341
}
342
342
}
343
343
else {
344
- if ( ( prevSignature === undefined && avoidInitializingSignature ) && ! programOfThisState . getCompilerOptions ( ) . disableLazyShapeComputation ) {
344
+ if ( prevSignature === undefined && avoidInitializingSignature ) {
345
345
if ( exportedModulesMapCache ) {
346
346
const references = state . referencedMap ? state . referencedMap . get ( sourceFile . resolvedPath ) : undefined ;
347
347
exportedModulesMapCache . set ( sourceFile . resolvedPath , references || false ) ;
Original file line number Diff line number Diff line change @@ -941,12 +941,6 @@ namespace ts {
941
941
category : Diagnostics . Advanced_Options ,
942
942
description : Diagnostics . Do_not_emit_declarations_for_code_that_has_an_internal_annotation ,
943
943
} ,
944
- {
945
- name : "disableLazyShapeComputation" ,
946
- type : "boolean" ,
947
- category : Diagnostics . Advanced_Options ,
948
- description : Diagnostics . Disable_lazy_computation_of_module_shapes
949
- } ,
950
944
{
951
945
name : "disableSizeLimit" ,
952
946
type : "boolean" ,
Original file line number Diff line number Diff line change @@ -5840,7 +5840,6 @@ namespace ts {
5840
5840
declarationDir ?: string ;
5841
5841
/* @internal */ diagnostics ?: boolean ;
5842
5842
/* @internal */ extendedDiagnostics ?: boolean ;
5843
- /* @internal */ disableLazyShapeComputation ?: boolean ;
5844
5843
disableSizeLimit ?: boolean ;
5845
5844
disableSourceOfProjectReferenceRedirect ?: boolean ;
5846
5845
disableSolutionSearching ?: boolean ;
Original file line number Diff line number Diff line change @@ -3315,7 +3315,6 @@ namespace ts.server.protocol {
3315
3315
checkJs ?: boolean ;
3316
3316
declaration ?: boolean ;
3317
3317
declarationDir ?: string ;
3318
- disableLazyShapeComputation ?: boolean ;
3319
3318
disableSizeLimit ?: boolean ;
3320
3319
downlevelIteration ?: boolean ;
3321
3320
emitBOM ?: boolean ;
Original file line number Diff line number Diff line change @@ -9157,7 +9157,6 @@ declare namespace ts.server.protocol {
9157
9157
checkJs?: boolean;
9158
9158
declaration?: boolean;
9159
9159
declarationDir?: string;
9160
- disableLazyShapeComputation?: boolean;
9161
9160
disableSizeLimit?: boolean;
9162
9161
downlevelIteration?: boolean;
9163
9162
emitBOM?: boolean;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments