Skip to content

Commit fc7677a

Browse files
authored
Fix rewriteRelativeImportExtensions oneline (#3373)
1 parent 17edf17 commit fc7677a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/documentation/copy/en/project-config/Compiler Options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
12791279
</td>
12801280
</tr>
12811281
<tr class="option-description odd"><td colspan="3">
1282-
<p>Does something</p>
1282+
<p>Rewrite <code>.ts</code>, <code>.tsx</code>, <code>.mts</code>, and <code>.cts</code> file extensions in relative import paths to their JavaScript equivalent in output files.</p>
12831283
</td></tr>
12841284

12851285
<tr class='even' name='rootDir'>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
display: "rewriteRelativeImportExtensions"
3-
oneline: "Does something"
3+
oneline: "Rewrite `.ts`, `.tsx`, `.mts`, and `.cts` file extensions in relative import paths to their JavaScript equivalent in output files."
44
---
55

66
Rewrite `.ts`, `.tsx`, `.mts`, and `.cts` file extensions in relative import paths to their JavaScript equivalent in output files.
77

8-
For more information, see the [TypeScript 5.7 release notes](/docs/handbook/release-notes/typescript-5-7.html#path-rewriting-for-relative-paths).
8+
For more information, see the [TypeScript 5.7 release notes](/docs/handbook/release-notes/typescript-5-7.html#path-rewriting-for-relative-paths).

packages/tsconfig-reference/scripts/schema/result/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,10 +1039,10 @@
10391039
"markdownDescription": "Built-in iterators are instantiated with a TReturn type of undefined instead of any.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictBuiltinIteratorReturn"
10401040
},
10411041
"rewriteRelativeImportExtensions": {
1042-
"description": "Does something",
1042+
"description": "Rewrite `.ts`, `.tsx`, `.mts`, and `.cts` file extensions in relative import paths to their JavaScript equivalent in output files.",
10431043
"type": "boolean",
10441044
"default": false,
1045-
"markdownDescription": "Does something\n\nSee more: https://www.typescriptlang.org/tsconfig#rewriteRelativeImportExtensions"
1045+
"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"
10461046
}
10471047
}
10481048
}

0 commit comments

Comments
 (0)