@typescript-deploys/pr-build 5.2.0-pr-54278-2 → 5.2.0-pr-54290-7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7128,15 +7128,9 @@ declare namespace ts {
7128
7128
  */
7129
7129
  Force = 3
7130
7130
  }
7131
- type PluginConfig = PluginImport | TransformerPluginImport;
7132
7131
  interface PluginImport {
7133
- type?: undefined;
7134
7132
  name: string;
7135
7133
  }
7136
- interface TransformerPluginImport {
7137
- type: "transformer";
7138
- path: string;
7139
- }
7140
7134
  interface ProjectReference {
7141
7135
  /** A normalized path on disk */
7142
7136
  path: string;
@@ -7167,7 +7161,7 @@ declare namespace ts {
7167
7161
  DynamicPriority = 2,
7168
7162
  FixedChunkSize = 3
7169
7163
  }
7170
- type CompilerOptionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | PluginConfig[] | ProjectReference[] | null | undefined;
7164
+ type CompilerOptionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | PluginImport[] | ProjectReference[] | null | undefined;
7171
7165
  interface CompilerOptions {
7172
7166
  allowImportingTsExtensions?: boolean;
7173
7167
  allowJs?: boolean;
@@ -7272,8 +7266,6 @@ declare namespace ts {
7272
7266
  verbatimModuleSyntax?: boolean;
7273
7267
  esModuleInterop?: boolean;
7274
7268
  useDefineForClassFields?: boolean;
7275
- customTransformers?: string[];
7276
- allowPlugins?: boolean;
7277
7269
  [option: string]: CompilerOptionsValue | TsConfigSourceFile | undefined;
7278
7270
  }
7279
7271
  interface WatchOptions {
@@ -8406,20 +8398,6 @@ declare namespace ts {
8406
8398
  negative: boolean;
8407
8399
  base10Value: string;
8408
8400
  }
8409
- type CustomTransformersModuleFactory = (mod: {
8410
- typescript: typeof ts;
8411
- }) => CustomTransformersModule;
8412
- interface CustomTransformersModuleWithName {
8413
- name: string;
8414
- module: CustomTransformersModule;
8415
- }
8416
- interface CustomTransformersModule {
8417
- create(createInfo: CustomTransformersCreateInfo): CustomTransformers;
8418
- }
8419
- interface CustomTransformersCreateInfo {
8420
- program: Program;
8421
- config: any;
8422
- }
8423
8401
  enum FileWatcherEventKind {
8424
8402
  Created = 0,
8425
8403
  Changed = 1,
@@ -9871,7 +9849,6 @@ declare namespace ts {
9871
9849
  sourceMap?: boolean;
9872
9850
  inlineSourceMap?: boolean;
9873
9851
  traceResolution?: boolean;
9874
- allowPlugins?: boolean;
9875
9852
  [option: string]: CompilerOptionsValue | undefined;
9876
9853
  }
9877
9854
  type ReportEmitErrorSummary = (errorCount: number, filesInError: (ReportFileInError | undefined)[]) => void;