You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/tsconfig/schema.json
+29-1
Original file line number
Diff line number
Diff line change
@@ -419,6 +419,15 @@
419
419
"default": false,
420
420
"markdownDescription": "Only output d.ts files and not JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#emitDeclarationOnly"
421
421
},
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
+
},
422
431
"exactOptionalPropertyTypes": {
423
432
"$comment": "The value of 'null' is UNDOCUMENTED (https://github.com/microsoft/TypeScript/pull/18058).",
424
433
"description": "Differentiate between undefined and not present when type checking",
"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
+
},
817
836
"rootDir": {
818
837
"$comment": "The value of 'null' is UNDOCUMENTED (https://github.com/microsoft/TypeScript/pull/18058).",
819
838
"description": "Specify the root folder within your source files.",
@@ -1398,6 +1417,15 @@
1398
1417
},
1399
1418
"markdownDescription": "Specify a set of bundled library declaration files that describe the target runtime environment.\n\nSee more: https://www.typescriptlang.org/tsconfig#lib"
0 commit comments