Skip to content

Commit ac69be3

Browse files
authored
Update files modified by bootstrap (#2900)
1 parent dd28b75 commit ac69be3

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

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

+17-17
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
305305
<td><code><a href='/tsconfig/#allowSyntheticDefaultImports'>--allowSyntheticDefaultImports</a></code></td>
306306
<td><p><code>boolean</code></p>
307307
</td>
308-
<td><p><code>true</code> if <a href="#esModuleInterop"><code>esModuleInterop</code></a> is enabled, <a href="#module"><code>module</code></a> is <code>system</code>, or <a href="#module-resolution"><code>moduleResolution</code></a> is <code>bundler</code>, <code>false</code> otherwise.</p>
308+
<td><p><code>true</code> if <a href="#esModuleInterop"><code>esModuleInterop</code></a> is enabled, <a href="#module"><code>module</code></a> is <code>system</code>, or <a href="#module-resolution"><code>moduleResolution</code></a> is <code>bundler</code>; <code>false</code> otherwise.</p>
309309
</td>
310310
</tr>
311311
<tr class="option-description even"><td colspan="3">
@@ -349,7 +349,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
349349
<td><code><a href='/tsconfig/#alwaysStrict'>--alwaysStrict</a></code></td>
350350
<td><p><code>boolean</code></p>
351351
</td>
352-
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>, <code>false</code> otherwise.</p>
352+
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>; <code>false</code> otherwise.</p>
353353
</td>
354354
</tr>
355355
<tr class="option-description even"><td colspan="3">
@@ -426,7 +426,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
426426
<td><code><a href='/tsconfig/#declaration'>--declaration</a></code></td>
427427
<td><p><code>boolean</code></p>
428428
</td>
429-
<td><p><code>true</code> if <a href="#composite"><code>composite</code></a>, <code>false</code> otherwise.</p>
429+
<td><p><code>true</code> if <a href="#composite"><code>composite</code></a>; <code>false</code> otherwise.</p>
430430
</td>
431431
</tr>
432432
<tr class="option-description odd"><td colspan="3">
@@ -558,7 +558,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
558558
<td><code><a href='/tsconfig/#esModuleInterop'>--esModuleInterop</a></code></td>
559559
<td><p><code>boolean</code></p>
560560
</td>
561-
<td><p><code>true</code> if <a href="#module"><code>module</code></a> is <code>node16</code> or <code>nodenext</code>, <code>false</code> otherwise.</p>
561+
<td><p><code>true</code> if <a href="#module"><code>module</code></a> is <code>node16</code> or <code>nodenext</code>; <code>false</code> otherwise.</p>
562562
</td>
563563
</tr>
564564
<tr class="option-description odd"><td colspan="3">
@@ -657,7 +657,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
657657
<td><code><a href='/tsconfig/#incremental'>--incremental</a></code></td>
658658
<td><p><code>boolean</code></p>
659659
</td>
660-
<td><p><code>true</code> if <a href="#composite"><code>composite</code></a>, <code>false</code> otherwise.</p>
660+
<td><p><code>true</code> if <a href="#composite"><code>composite</code></a>; <code>false</code> otherwise.</p>
661661
</td>
662662
</tr>
663663
<tr class="option-description even"><td colspan="3">
@@ -811,7 +811,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
811811
<td><code><a href='/tsconfig/#module'>--module</a></code></td>
812812
<td><p><code>none</code>, <code>commonjs</code>, <code>amd</code>, <code>umd</code>, <code>system</code>, <code>es6</code>/<code>es2015</code>, <code>es2020</code>, <code>es2022</code>, <code>esnext</code>, <code>node16</code>, or <code>nodenext</code></p>
813813
</td>
814-
<td><p><code>CommonJS</code> if <a href="#target"><code>target</code></a> is <code>ES3</code> or <code>ES5</code>, <code>ES6</code>/<code>ES2015</code> otherwise.</p>
814+
<td><p><code>CommonJS</code> if <a href="#target"><code>target</code></a> is <code>ES3</code> or <code>ES5</code>; <code>ES6</code>/<code>ES2015</code> otherwise.</p>
815815
</td>
816816
</tr>
817817
<tr class="option-description even"><td colspan="3">
@@ -826,14 +826,14 @@ tsc app.ts util.ts --target esnext --outfile index.js
826826
</td>
827827
</tr>
828828
<tr class="option-description odd"><td colspan="3">
829-
<p>Control what method is used to detect the whether a JS file is a module.</p>
829+
<p>Specify what method is used to detect whether a file is a script or a module.</p>
830830
</td></tr>
831831

832832
<tr class='even' name='moduleResolution'>
833833
<td><code><a href='/tsconfig/#moduleResolution'>--moduleResolution</a></code></td>
834834
<td><p><code>classic</code>, <code>node10</code>/<code>node</code>, <code>node16</code>, <code>nodenext</code>, or <code>bundler</code></p>
835835
</td>
836-
<td><p><code>Classic</code> if <a href="#module"><code>module</code></a> is <code>AMD</code>, <code>UMD</code>, <code>System</code> or <code>ES6</code>/<code>ES2015</code>, Matches if <a href="#module"><code>module</code></a> is <code>node16</code> or <code>nodenext</code>, <code>Node</code> otherwise.</p>
836+
<td><p><code>Classic</code> if <a href="#module"><code>module</code></a> is <code>AMD</code>, <code>UMD</code>, <code>System</code>, or <code>ES6</code>/<code>ES2015</code>; Matches if <a href="#module"><code>module</code></a> is <code>node16</code> or <code>nodenext</code>; <code>Node</code> otherwise.</p>
837837
</td>
838838
</tr>
839839
<tr class="option-description even"><td colspan="3">
@@ -921,7 +921,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
921921
<td><code><a href='/tsconfig/#noImplicitAny'>--noImplicitAny</a></code></td>
922922
<td><p><code>boolean</code></p>
923923
</td>
924-
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>, <code>false</code> otherwise.</p>
924+
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>; <code>false</code> otherwise.</p>
925925
</td>
926926
</tr>
927927
<tr class="option-description even"><td colspan="3">
@@ -954,7 +954,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
954954
<td><code><a href='/tsconfig/#noImplicitThis'>--noImplicitThis</a></code></td>
955955
<td><p><code>boolean</code></p>
956956
</td>
957-
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>, <code>false</code> otherwise.</p>
957+
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>; <code>false</code> otherwise.</p>
958958
</td>
959959
</tr>
960960
<tr class="option-description odd"><td colspan="3">
@@ -1108,7 +1108,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
11081108
<td><code><a href='/tsconfig/#preserveConstEnums'>--preserveConstEnums</a></code></td>
11091109
<td><p><code>boolean</code></p>
11101110
</td>
1111-
<td><p><code>true</code> if <a href="#isolatedModules"><code>isolatedModules</code></a>, <code>false</code> otherwise.</p>
1111+
<td><p><code>true</code> if <a href="#isolatedModules"><code>isolatedModules</code></a>; <code>false</code> otherwise.</p>
11121112
</td>
11131113
</tr>
11141114
<tr class="option-description odd"><td colspan="3">
@@ -1295,7 +1295,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
12951295
<td><code><a href='/tsconfig/#strictBindCallApply'>--strictBindCallApply</a></code></td>
12961296
<td><p><code>boolean</code></p>
12971297
</td>
1298-
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>, <code>false</code> otherwise.</p>
1298+
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>; <code>false</code> otherwise.</p>
12991299
</td>
13001300
</tr>
13011301
<tr class="option-description even"><td colspan="3">
@@ -1306,7 +1306,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
13061306
<td><code><a href='/tsconfig/#strictFunctionTypes'>--strictFunctionTypes</a></code></td>
13071307
<td><p><code>boolean</code></p>
13081308
</td>
1309-
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>, <code>false</code> otherwise.</p>
1309+
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>; <code>false</code> otherwise.</p>
13101310
</td>
13111311
</tr>
13121312
<tr class="option-description odd"><td colspan="3">
@@ -1317,7 +1317,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
13171317
<td><code><a href='/tsconfig/#strictNullChecks'>--strictNullChecks</a></code></td>
13181318
<td><p><code>boolean</code></p>
13191319
</td>
1320-
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>, <code>false</code> otherwise.</p>
1320+
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>; <code>false</code> otherwise.</p>
13211321
</td>
13221322
</tr>
13231323
<tr class="option-description even"><td colspan="3">
@@ -1328,7 +1328,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
13281328
<td><code><a href='/tsconfig/#strictPropertyInitialization'>--strictPropertyInitialization</a></code></td>
13291329
<td><p><code>boolean</code></p>
13301330
</td>
1331-
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>, <code>false</code> otherwise.</p>
1331+
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>; <code>false</code> otherwise.</p>
13321332
</td>
13331333
</tr>
13341334
<tr class="option-description odd"><td colspan="3">
@@ -1427,7 +1427,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
14271427
<td><code><a href='/tsconfig/#useDefineForClassFields'>--useDefineForClassFields</a></code></td>
14281428
<td><p><code>boolean</code></p>
14291429
</td>
1430-
<td><p><code>true</code> if <a href="#target"><code>target</code></a> is <code>ES2022</code> or higher, including <code>ESNext</code>, <code>false</code> otherwise.</p>
1430+
<td><p><code>true</code> if <a href="#target"><code>target</code></a> is <code>ES2022</code> or higher, including <code>ESNext</code>; <code>false</code> otherwise.</p>
14311431
</td>
14321432
</tr>
14331433
<tr class="option-description even"><td colspan="3">
@@ -1438,7 +1438,7 @@ tsc app.ts util.ts --target esnext --outfile index.js
14381438
<td><code><a href='/tsconfig/#useUnknownInCatchVariables'>--useUnknownInCatchVariables</a></code></td>
14391439
<td><p><code>boolean</code></p>
14401440
</td>
1441-
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>, <code>false</code> otherwise.</p>
1441+
<td><p><code>true</code> if <a href="#strict"><code>strict</code></a>; <code>false</code> otherwise.</p>
14421442
</td>
14431443
</tr>
14441444
<tr class="option-description odd"><td colspan="3">

packages/documentation/scripts/types/AllFilenames.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export type AllDocsPages =
110110
| "release-notes/TypeScript 4.8.md"
111111
| "release-notes/TypeScript 4.9.md"
112112
| "release-notes/TypeScript 5.0.md"
113+
| "release-notes/TypeScript 5.1.md"
113114
| "tutorials/ASP.NET Core.md"
114115
| "tutorials/Angular.md"
115116
| "tutorials/Babel with TypeScript.md"

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@
345345
"markdownDescription": "Specify what module code is generated.\n\nSee more: https://www.typescriptlang.org/tsconfig#module"
346346
},
347347
"moduleDetection": {
348-
"description": "Control what method is used to detect the whether a JS file is a module.",
348+
"description": "Specify what method is used to detect whether a file is a script or a module.",
349349
"type": "string",
350350
"enum": ["auto", "legacy", "force"],
351351
"default": "auto"

0 commit comments

Comments
 (0)