Skip to content

Commit 74a8049

Browse files
feat: update schema
1 parent 4c01ead commit 74a8049

File tree

5 files changed

+111
-3
lines changed

5 files changed

+111
-3
lines changed

.changeset/slimy-buses-switch.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@json-types/tsconfig": minor
3+
---
4+
5+
Update schema

packages/tsconfig/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ import schema from "@json-types/tsconfig/schema.json";
2222

2323
TypeScript types generated automatically every night and published when there are changes.
2424

25-
- Last change: 2024-11-26T01:50:03.314Z
25+
- Last change: 2025-03-07T01:49:07.081Z
2626
- Source URL: https://json.schemastore.org/tsconfig.json

packages/tsconfig/index.d.ts

+75
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ export type CompilerOptions = {
6565
* Only output d.ts files and not JavaScript files.
6666
*/
6767
emitDeclarationOnly?: boolean | null;
68+
/**
69+
* Do not allow runtime constructs that are not part of ECMAScript.
70+
*/
71+
erasableSyntaxOnly?: boolean | null;
6872
/**
6973
* Differentiate between undefined and not present when type checking
7074
*/
@@ -129,6 +133,7 @@ export type CompilerOptions = {
129133
| "None"
130134
| "ES2022"
131135
| "Node16"
136+
| "Node18"
132137
| "NodeNext"
133138
| "Preserve"
134139
)
@@ -150,6 +155,7 @@ export type CompilerOptions = {
150155
| "None"
151156
| "ES2022"
152157
| "Node16"
158+
| "Node18"
153159
| "NodeNext"
154160
| "Preserve"
155161
)
@@ -171,6 +177,7 @@ export type CompilerOptions = {
171177
| "None"
172178
| "ES2022"
173179
| "Node16"
180+
| "Node18"
174181
| "NodeNext"
175182
| "Preserve"
176183
)
@@ -310,6 +317,10 @@ export type CompilerOptions = {
310317
* Disable emitting comments.
311318
*/
312319
removeComments?: boolean | null;
320+
/**
321+
* Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.
322+
*/
323+
rewriteRelativeImportExtensions?: boolean | null;
313324
/**
314325
* Specify the root folder within your source files.
315326
*/
@@ -983,6 +994,10 @@ export type CompilerOptions = {
983994
null)
984995
))[]
985996
| null;
997+
/**
998+
* Enable lib replacement.
999+
*/
1000+
libReplacement?: boolean | null;
9861001
/**
9871002
* Specify how TypeScript determine a file as module.
9881003
*/
@@ -1152,6 +1167,10 @@ export type CompilerOptions = {
11521167
* Only output d.ts files and not JavaScript files.
11531168
*/
11541169
emitDeclarationOnly?: boolean | null;
1170+
/**
1171+
* Do not allow runtime constructs that are not part of ECMAScript.
1172+
*/
1173+
erasableSyntaxOnly?: boolean | null;
11551174
/**
11561175
* Differentiate between undefined and not present when type checking
11571176
*/
@@ -1213,6 +1232,7 @@ export type CompilerOptions = {
12131232
| "None"
12141233
| "ES2022"
12151234
| "Node16"
1235+
| "Node18"
12161236
| "NodeNext"
12171237
| "Preserve"
12181238
)
@@ -1234,6 +1254,7 @@ export type CompilerOptions = {
12341254
| "None"
12351255
| "ES2022"
12361256
| "Node16"
1257+
| "Node18"
12371258
| "NodeNext"
12381259
| "Preserve"
12391260
)
@@ -1255,6 +1276,7 @@ export type CompilerOptions = {
12551276
| "None"
12561277
| "ES2022"
12571278
| "Node16"
1279+
| "Node18"
12581280
| "NodeNext"
12591281
| "Preserve"
12601282
)
@@ -1388,6 +1410,10 @@ export type CompilerOptions = {
13881410
* Disable emitting comments.
13891411
*/
13901412
removeComments?: boolean | null;
1413+
/**
1414+
* Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.
1415+
*/
1416+
rewriteRelativeImportExtensions?: boolean | null;
13911417
/**
13921418
* Specify the root folder within your source files.
13931419
*/
@@ -2058,6 +2084,10 @@ export type CompilerOptions = {
20582084
null)
20592085
))[]
20602086
| null;
2087+
/**
2088+
* Enable lib replacement.
2089+
*/
2090+
libReplacement?: boolean | null;
20612091
/**
20622092
* Specify how TypeScript determine a file as module.
20632093
*/
@@ -2360,6 +2390,10 @@ export interface TsNodeDefinition {
23602390
* Only output d.ts files and not JavaScript files.
23612391
*/
23622392
emitDeclarationOnly?: boolean | null;
2393+
/**
2394+
* Do not allow runtime constructs that are not part of ECMAScript.
2395+
*/
2396+
erasableSyntaxOnly?: boolean | null;
23632397
/**
23642398
* Differentiate between undefined and not present when type checking
23652399
*/
@@ -2421,6 +2455,7 @@ export interface TsNodeDefinition {
24212455
| "None"
24222456
| "ES2022"
24232457
| "Node16"
2458+
| "Node18"
24242459
| "NodeNext"
24252460
| "Preserve"
24262461
)
@@ -2442,6 +2477,7 @@ export interface TsNodeDefinition {
24422477
| "None"
24432478
| "ES2022"
24442479
| "Node16"
2480+
| "Node18"
24452481
| "NodeNext"
24462482
| "Preserve"
24472483
)
@@ -2463,6 +2499,7 @@ export interface TsNodeDefinition {
24632499
| "None"
24642500
| "ES2022"
24652501
| "Node16"
2502+
| "Node18"
24662503
| "NodeNext"
24672504
| "Preserve"
24682505
)
@@ -2596,6 +2633,10 @@ export interface TsNodeDefinition {
25962633
* Disable emitting comments.
25972634
*/
25982635
removeComments?: boolean | null;
2636+
/**
2637+
* Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.
2638+
*/
2639+
rewriteRelativeImportExtensions?: boolean | null;
25992640
/**
26002641
* Specify the root folder within your source files.
26012642
*/
@@ -3266,6 +3307,10 @@ export interface TsNodeDefinition {
32663307
null)
32673308
))[]
32683309
| null;
3310+
/**
3311+
* Enable lib replacement.
3312+
*/
3313+
libReplacement?: boolean | null;
32693314
/**
32703315
* Specify how TypeScript determine a file as module.
32713316
*/
@@ -3437,6 +3482,10 @@ export interface TsNodeDefinition {
34373482
* Only output d.ts files and not JavaScript files.
34383483
*/
34393484
emitDeclarationOnly?: boolean | null;
3485+
/**
3486+
* Do not allow runtime constructs that are not part of ECMAScript.
3487+
*/
3488+
erasableSyntaxOnly?: boolean | null;
34403489
/**
34413490
* Differentiate between undefined and not present when type checking
34423491
*/
@@ -3498,6 +3547,7 @@ export interface TsNodeDefinition {
34983547
| "None"
34993548
| "ES2022"
35003549
| "Node16"
3550+
| "Node18"
35013551
| "NodeNext"
35023552
| "Preserve"
35033553
)
@@ -3519,6 +3569,7 @@ export interface TsNodeDefinition {
35193569
| "None"
35203570
| "ES2022"
35213571
| "Node16"
3572+
| "Node18"
35223573
| "NodeNext"
35233574
| "Preserve"
35243575
)
@@ -3540,6 +3591,7 @@ export interface TsNodeDefinition {
35403591
| "None"
35413592
| "ES2022"
35423593
| "Node16"
3594+
| "Node18"
35433595
| "NodeNext"
35443596
| "Preserve"
35453597
)
@@ -3673,6 +3725,10 @@ export interface TsNodeDefinition {
36733725
* Disable emitting comments.
36743726
*/
36753727
removeComments?: boolean | null;
3728+
/**
3729+
* Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.
3730+
*/
3731+
rewriteRelativeImportExtensions?: boolean | null;
36763732
/**
36773733
* Specify the root folder within your source files.
36783734
*/
@@ -4347,6 +4403,10 @@ export interface TsNodeDefinition {
43474403
null)
43484404
))[]
43494405
| null;
4406+
/**
4407+
* Enable lib replacement.
4408+
*/
4409+
libReplacement?: boolean | null;
43504410
/**
43514411
* Specify how TypeScript determine a file as module.
43524412
*/
@@ -4517,6 +4577,10 @@ export interface TsNodeDefinition {
45174577
* Only output d.ts files and not JavaScript files.
45184578
*/
45194579
emitDeclarationOnly?: boolean | null;
4580+
/**
4581+
* Do not allow runtime constructs that are not part of ECMAScript.
4582+
*/
4583+
erasableSyntaxOnly?: boolean | null;
45204584
/**
45214585
* Differentiate between undefined and not present when type checking
45224586
*/
@@ -4578,6 +4642,7 @@ export interface TsNodeDefinition {
45784642
| "None"
45794643
| "ES2022"
45804644
| "Node16"
4645+
| "Node18"
45814646
| "NodeNext"
45824647
| "Preserve"
45834648
)
@@ -4599,6 +4664,7 @@ export interface TsNodeDefinition {
45994664
| "None"
46004665
| "ES2022"
46014666
| "Node16"
4667+
| "Node18"
46024668
| "NodeNext"
46034669
| "Preserve"
46044670
)
@@ -4620,6 +4686,7 @@ export interface TsNodeDefinition {
46204686
| "None"
46214687
| "ES2022"
46224688
| "Node16"
4689+
| "Node18"
46234690
| "NodeNext"
46244691
| "Preserve"
46254692
)
@@ -4753,6 +4820,10 @@ export interface TsNodeDefinition {
47534820
* Disable emitting comments.
47544821
*/
47554822
removeComments?: boolean | null;
4823+
/**
4824+
* Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.
4825+
*/
4826+
rewriteRelativeImportExtensions?: boolean | null;
47564827
/**
47574828
* Specify the root folder within your source files.
47584829
*/
@@ -5427,6 +5498,10 @@ export interface TsNodeDefinition {
54275498
null)
54285499
))[]
54295500
| null;
5501+
/**
5502+
* Enable lib replacement.
5503+
*/
5504+
libReplacement?: boolean | null;
54305505
/**
54315506
* Specify how TypeScript determine a file as module.
54325507
*/

packages/tsconfig/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"tsconfig"
1212
],
1313
"x-json-types": {
14-
"lastChangeDate": "2024-11-26T01:50:03.314Z"
14+
"lastChangeDate": "2025-03-07T01:49:07.081Z"
1515
},
1616
"homepage": "https://github.com/swordev/json-types/tree/main/packages/tsconfig",
1717
"bugs": {

packages/tsconfig/schema.json

+29-1
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,15 @@
419419
"default": false,
420420
"markdownDescription": "Only output d.ts files and not JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#emitDeclarationOnly"
421421
},
422+
"erasableSyntaxOnly": {
423+
"description": "Do not allow runtime constructs that are not part of ECMAScript.",
424+
"type": [
425+
"boolean",
426+
"null"
427+
],
428+
"default": false,
429+
"markdownDescription": "Do not allow runtime constructs that are not part of ECMAScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#erasableSyntaxOnly"
430+
},
422431
"exactOptionalPropertyTypes": {
423432
"$comment": "The value of 'null' is UNDOCUMENTED (https://github.com/microsoft/TypeScript/pull/18058).",
424433
"description": "Differentiate between undefined and not present when type checking",
@@ -556,12 +565,13 @@
556565
"None",
557566
"ES2022",
558567
"Node16",
568+
"Node18",
559569
"NodeNext",
560570
"Preserve"
561571
]
562572
},
563573
{
564-
"pattern": "^([Cc][Oo][Mm][Mm][Oo][Nn][Jj][Ss]|[AaUu][Mm][Dd]|[Ss][Yy][Ss][Tt][Ee][Mm]|[Ee][Ss]([356]|20(1[567]|2[02])|[Nn][Ee][Xx][Tt])|[Nn][Oo][dD][Ee]16|[Nn][Oo][Dd][Ee][Nn][Ee][Xx][Tt]|[Nn][Oo][Nn][Ee]|[Pp][Rr][Ee][Ss][Ee][Rr][Vv][Ee])$"
574+
"pattern": "^([Cc][Oo][Mm][Mm][Oo][Nn][Jj][Ss]|[AaUu][Mm][Dd]|[Ss][Yy][Ss][Tt][Ee][Mm]|[Ee][Ss]([356]|20(1[567]|2[02])|[Nn][Ee][Xx][Tt])|[Nn][Oo][dD][Ee]1[68]|[Nn][Oo][Dd][Ee][Nn][Ee][Xx][Tt]|[Nn][Oo][Nn][Ee]|[Pp][Rr][Ee][Ss][Ee][Rr][Vv][Ee])$"
565575
}
566576
],
567577
"markdownDescription": "Specify what module code is generated.\n\nSee more: https://www.typescriptlang.org/tsconfig#module"
@@ -814,6 +824,15 @@
814824
"default": false,
815825
"markdownDescription": "Disable emitting comments.\n\nSee more: https://www.typescriptlang.org/tsconfig#removeComments"
816826
},
827+
"rewriteRelativeImportExtensions": {
828+
"description": "Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.",
829+
"type": [
830+
"boolean",
831+
"null"
832+
],
833+
"default": false,
834+
"markdownDescription": "Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.\n\nSee more: https://www.typescriptlang.org/tsconfig#rewriteRelativeImportExtensions"
835+
},
817836
"rootDir": {
818837
"$comment": "The value of 'null' is UNDOCUMENTED (https://github.com/microsoft/TypeScript/pull/18058).",
819838
"description": "Specify the root folder within your source files.",
@@ -1398,6 +1417,15 @@
13981417
},
13991418
"markdownDescription": "Specify a set of bundled library declaration files that describe the target runtime environment.\n\nSee more: https://www.typescriptlang.org/tsconfig#lib"
14001419
},
1420+
"libReplacement": {
1421+
"description": "Enable lib replacement.",
1422+
"type": [
1423+
"boolean",
1424+
"null"
1425+
],
1426+
"default": true,
1427+
"markdownDescription": "Enable lib replacement.\n\nSee more: https://www.typescriptlang.org/tsconfig#libReplacement"
1428+
},
14011429
"moduleDetection": {
14021430
"description": "Specify how TypeScript determine a file as module.",
14031431
"enum": [

0 commit comments

Comments
 (0)