File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -603,6 +603,12 @@ namespace ts {
603
603
category : Diagnostics . Source_Map_Options ,
604
604
description : Diagnostics . Emit_the_source_alongside_the_sourcemaps_within_a_single_file_requires_inlineSourceMap_or_sourceMap_to_be_set
605
605
} ,
606
+ {
607
+ name : "allowUmdGlobalAccess" ,
608
+ type : "boolean" ,
609
+ category : Diagnostics . Module_Resolution_Options ,
610
+ description : Diagnostics . Allow_accessing_UMD_globals_from_modules ,
611
+ } ,
606
612
607
613
// Experimental
608
614
{
Original file line number Diff line number Diff line change 4938
4938
"Convert parameters to destructured object" : {
4939
4939
"category" : " Message" ,
4940
4940
"code" : 95075
4941
+ },
4942
+ "Allow accessing UMD globals from modules" : {
4943
+ "category" : " Message" ,
4944
+ "code" : 95076
4941
4945
}
4942
4946
}
Original file line number Diff line number Diff line change @@ -4580,6 +4580,7 @@ namespace ts {
4580
4580
allowJs ?: boolean ;
4581
4581
/*@internal */ allowNonTsExtensions ?: boolean ;
4582
4582
allowSyntheticDefaultImports ?: boolean ;
4583
+ allowUmdGlobalAccess ?: boolean ;
4583
4584
allowUnreachableCode ?: boolean ;
4584
4585
allowUnusedLabels ?: boolean ;
4585
4586
alwaysStrict ?: boolean ; // Always combine with strict property
You can’t perform that action at this time.
0 commit comments