@schemastore/tsconfig 0.0.11 → 0.0.12

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +3 -64
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -24,5 +24,5 @@ The definitions were auto-generated by [schemastore-updater](https://github.com/
24
24
  ## Additional Details
25
25
 
26
26
  * [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/tsconfig)
27
- * Last updated: Fri, Jun 30, 2023, 21:04:05 GMT
27
+ * Last updated: Sat, Jul 19, 2025, 17:01:26 GMT
28
28
  * Dependencies: none
package/index.d.ts CHANGED
@@ -22,14 +22,6 @@ export interface CompilerOptionsDefinition {
22
22
  * Instructs the TypeScript compiler how to compile .ts files.
23
23
  */
24
24
  export interface CompilerOptions {
25
- /**
26
- * Enable importing files with any extension, provided a declaration file is present.
27
- */
28
- allowArbitraryExtensions?: boolean;
29
- /**
30
- * Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.
31
- */
32
- allowImportingTsExtensions?: boolean;
33
25
  /**
34
26
  * No longer supported. In early versions, manually set the text encoding for reading files.
35
27
  */
@@ -38,10 +30,6 @@ export interface CompilerOptions {
38
30
  * Enable constraints that allow a TypeScript project to be used with project references.
39
31
  */
40
32
  composite?: boolean;
41
- /**
42
- * Conditions to set in addition to the resolver-specific defaults when resolving imports.
43
- */
44
- customConditions?: string[];
45
33
  /**
46
34
  * Generate .d.ts files from TypeScript and JavaScript files in your project.
47
35
  */
@@ -145,7 +133,7 @@ export interface CompilerOptions {
145
133
  * Specify how TypeScript looks up a file from a given module specifier.
146
134
  */
147
135
  moduleResolution?: (
148
- | ("classic" | "node" | "node16" | "nodenext" | "bundler")
136
+ | ("Classic" | "Node" | "Node16" | "NodeNext")
149
137
  | {
150
138
  [k: string]: unknown | undefined;
151
139
  }
@@ -285,7 +273,6 @@ export interface CompilerOptions {
285
273
  | "ES2020"
286
274
  | "ES2021"
287
275
  | "ES2022"
288
- | "ES2023"
289
276
  | "ESNext"
290
277
  )
291
278
  | {
@@ -501,42 +488,6 @@ export interface CompilerOptions {
501
488
  | {
502
489
  [k: string]: unknown | undefined;
503
490
  }
504
- | {
505
- [k: string]: unknown | undefined;
506
- }
507
- | {
508
- [k: string]: unknown | undefined;
509
- }
510
- | {
511
- [k: string]: unknown | undefined;
512
- }
513
- | {
514
- [k: string]: unknown | undefined;
515
- }
516
- | {
517
- [k: string]: unknown | undefined;
518
- }
519
- | {
520
- [k: string]: unknown | undefined;
521
- }
522
- | {
523
- [k: string]: unknown | undefined;
524
- }
525
- | {
526
- [k: string]: unknown | undefined;
527
- }
528
- | {
529
- [k: string]: unknown | undefined;
530
- }
531
- | {
532
- [k: string]: unknown | undefined;
533
- }
534
- | {
535
- [k: string]: unknown | undefined;
536
- }
537
- | {
538
- [k: string]: unknown | undefined;
539
- }
540
491
  ) &
541
492
  string)[];
542
493
  /**
@@ -611,14 +562,6 @@ export interface CompilerOptions {
611
562
  * Enable importing .json files
612
563
  */
613
564
  resolveJsonModule?: boolean;
614
- /**
615
- * Use the package.json 'exports' field when resolving package imports.
616
- */
617
- resolvePackageJsonExports?: boolean;
618
- /**
619
- * Use the package.json 'imports' field when resolving imports.
620
- */
621
- resolvePackageJsonImports?: boolean;
622
565
  /**
623
566
  * Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it. Requires TypeScript version 3.8 or later.
624
567
  */
@@ -639,10 +582,6 @@ export interface CompilerOptions {
639
582
  * Opt a project out of multi-project reference checking when editing.
640
583
  */
641
584
  disableSolutionSearching?: boolean;
642
- /**
643
- * Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.
644
- */
645
- verbatimModuleSyntax?: boolean;
646
585
  [k: string]: unknown | undefined;
647
586
  }
648
587
  export interface CompileOnSaveDefinition {
@@ -675,9 +614,9 @@ export interface TypeAcquisitionDefinition {
675
614
  }
676
615
  export interface ExtendsDefinition {
677
616
  /**
678
- * Path to base configuration file to inherit from (requires TypeScript version 2.1 or later), or array of base files, with the rightmost files having the greater priority (requires TypeScript version 5.0 or later).
617
+ * Path to base configuration file to inherit from. Requires TypeScript version 2.1 or later.
679
618
  */
680
- extends?: string | string[];
619
+ extends?: string;
681
620
  [k: string]: unknown | undefined;
682
621
  }
683
622
  export interface WatchOptionsDefinition {
package/package.json CHANGED
@@ -9,6 +9,6 @@
9
9
  "scripts": {},
10
10
  "typeScriptVersion": "2.2",
11
11
  "types": "index.d.ts",
12
- "typesPublisherContentHash": "179a48b9d118e9d4b5e8db9b93833fcd46cb784d3cf68f2509e0f3b2ce6a82eb",
13
- "version": "0.0.11"
12
+ "typesPublisherContentHash": "bfb220d9f77c44cb45e277c581228f8c1d2ef71e280580877dcaf67442baa05e",
13
+ "version": "0.0.12"
14
14
  }