File tree 13 files changed +636
-407
lines changed
documentation/copy/en/project-config
ts-twoslasher/test/results
13 files changed +636
-407
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ---
Original file line number Diff line number Diff line change @@ -86,3 +86,5 @@ packages/typescriptlang-org/src/lib/documentationNavigation.ts
86
86
! ** /.vscode /settings.template.json
87
87
! ** /.vscode /launch.json
88
88
! ** /.vscode /extensions.json
89
+
90
+ * .tsbuildinfo
Original file line number Diff line number Diff line change 10
10
"@changesets/cli" : " ^2.27.5" ,
11
11
"@oss-docs/sync" : " ^1.1.4" ,
12
12
"@types/express" : " ^4.17.6" ,
13
- "@types/node" : " ^18.19.33 " ,
13
+ "@types/node" : " ^18.19.50 " ,
14
14
"@types/react" : " ^18.3.2" ,
15
15
"chalk" : " ^4.1.2" ,
16
16
"concurrently" : " ^8.2.2" ,
38
38
"@types/eslint" : " 7.29.0" ,
39
39
"assert" : " 2.0.0" ,
40
40
"rollup-plugin-typescript2" : " 0.34.1" ,
41
- "typescript" : " 5.5.3 " ,
41
+ "typescript" : " 5.6.2 " ,
42
42
"tslib" : " ^2.6.2" ,
43
43
"prettier" : " ^2.0.2" ,
44
44
"sharp" : " 0.28.1"
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 96
96
"targetString" : " a"
97
97
},
98
98
{
99
- "text" : " function createLabel<\" typescript\" >(idOrName: \" typescript\" ): NameOrId< \" typescript \" > " ,
99
+ "text" : " function createLabel<\" typescript\" >(idOrName: \" typescript\" ): NameLabel " ,
100
100
"docs" : " " ,
101
101
"start" : 113 ,
102
102
"length" : 11 ,
114
114
"targetString" : " b"
115
115
},
116
116
{
117
- "text" : " function createLabel<2.8>(idOrName: 2.8): NameOrId<2.8> " ,
117
+ "text" : " function createLabel<2.8>(idOrName: 2.8): IdLabel " ,
118
118
"docs" : " " ,
119
119
"start" : 149 ,
120
120
"length" : 11 ,
132
132
"targetString" : " c"
133
133
},
134
134
{
135
- "text" : " function createLabel<\" hello\" | 42>(idOrName: \" hello\" | 42): NameOrId< \" hello \" | 42> " ,
135
+ "text" : " function createLabel<\" hello\" | 42>(idOrName: \" hello\" | 42): IdLabel | NameLabel " ,
136
136
"docs" : " " ,
137
137
"start" : 176 ,
138
138
"length" : 11 ,
Original file line number Diff line number Diff line change
1
+ ---
2
+ display : " generateTrace"
3
+ oneline : " Generates an event trace and a list of types."
4
+ ---
5
+ Generates an event trace and a list of types.
6
+
Original file line number Diff line number Diff line change
1
+ ---
2
+ display : " noUncheckedSideEffectImports"
3
+ oneline : " Check side effect imports."
4
+ ---
5
+ Check side effect imports.
6
+
Original file line number Diff line number Diff line change
1
+ ---
2
+ display : " stopBuildOnErrors"
3
+ oneline : " Skip building downstream projects on error in upstream project."
4
+ ---
5
+ Skip building downstream projects on error in upstream project.
6
+
Original file line number Diff line number Diff line change
1
+ ---
2
+ display : " strictBuiltinIteratorReturn"
3
+ oneline : " Built-in iterators are instantiated with a TReturn type of undefined instead of any."
4
+ ---
5
+ Built-in iterators are instantiated with a ` TReturn ` type of undefined instead of ` any ` .
6
+
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ export type CompilerOptionName =
20
20
| "emitDeclarationOnly"
21
21
| "sourceMap"
22
22
| "inlineSourceMap"
23
+ | "noCheck"
24
+ | "noEmit"
23
25
| "assumeChangesOnlyAffectDirectDependencies"
24
26
| "locale"
25
27
| "all"
@@ -41,8 +43,6 @@ export type CompilerOptionName =
41
43
| "composite"
42
44
| "tsBuildInfoFile"
43
45
| "removeComments"
44
- | "noCheck"
45
- | "noEmit"
46
46
| "importHelpers"
47
47
| "importsNotUsedAsValues"
48
48
| "downlevelIteration"
@@ -55,6 +55,7 @@ export type CompilerOptionName =
55
55
| "strictFunctionTypes"
56
56
| "strictBindCallApply"
57
57
| "strictPropertyInitialization"
58
+ | "strictBuiltinIteratorReturn"
58
59
| "noImplicitThis"
59
60
| "useUnknownInCatchVariables"
60
61
| "alwaysStrict"
@@ -81,6 +82,7 @@ export type CompilerOptionName =
81
82
| "resolvePackageJsonExports"
82
83
| "resolvePackageJsonImports"
83
84
| "customConditions"
85
+ | "noUncheckedSideEffectImports"
84
86
| "sourceRoot"
85
87
| "mapRoot"
86
88
| "inlineSources"
@@ -134,6 +136,7 @@ export type CompilerOptionName =
134
136
| "dry"
135
137
| "force"
136
138
| "clean"
139
+ | "stopBuildOnErrors"
137
140
| "enable"
138
141
| "include"
139
142
| "exclude"
Original file line number Diff line number Diff line change 98
98
"type" : " boolean" ,
99
99
"default" : false ,
100
100
"markdownDescription" : " Log paths used during the `moduleResolution` process.\n\n See more: https://www.typescriptlang.org/tsconfig#traceResolution"
101
+ },
102
+ "stopBuildOnErrors" : {
103
+ "description" : " Skip building downstream projects on error in upstream project." ,
104
+ "type" : " boolean" ,
105
+ "default" : false ,
106
+ "markdownDescription" : " Skip building downstream projects on error in upstream project.\n\n See more: https://www.typescriptlang.org/tsconfig#stopBuildOnErrors"
101
107
}
102
108
}
103
109
}
834
840
" esnext.decorators" ,
835
841
" esnext.object" ,
836
842
" esnext.regexp" ,
843
+ " esnext.iterator" ,
837
844
" decorators" ,
838
845
" decorators.legacy"
839
846
]
840
847
},
841
848
{
842
- "pattern": "^(?:[Ee][Ss]5|[Ee][Ss]6|[Ee][Ss]2015|[Ee][Ss]7|[Ee][Ss]2016|[Ee][Ss]2017|[Ee][Ss]2018|[Ee][Ss]2019|[Ee][Ss]2020|[Ee][Ss]2021|[Ee][Ss]2022|[Ee][Ss]2023|[Ee][Ss][Nn][Ee][Xx][Tt]|[Dd][Oo][Mm]|[Dd][Oo][Mm]\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Dd][Oo][Mm]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Ii][Mm][Pp][Oo][Rr][Tt][Ss][Cc][Rr][Ii][Pp][Tt][Ss]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ss][Cc][Rr][Ii][Pp][Tt][Hh][Oo][Ss][Tt]|[Ee][Ss]2015\\.[Cc][Oo][Rr][Ee]|[Ee][Ss]2015\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss]2015\\.[Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ee][Ss]2015\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss]2015\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2015\\.[Pp][Rr][Oo][Xx][Yy]|[Ee][Ss]2015\\.[Rr][Ee][Ff][Ll][Ee][Cc][Tt]|[Ee][Ss]2015\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss]2015\\.[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ee][Ss]2016\\.[Aa][Rr][Rr][Aa][Yy]\\.[Ii][Nn][Cc][Ll][Uu][Dd][Ee]|[Ee][Ss]2016\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2017\\.[Dd][Aa][Tt][Ee]|[Ee][Ss]2017\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2017\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2017\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2017\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2017\\.[Tt][Yy][Pp][Ee][Dd][Aa][Rr][Rr][Aa][Yy][Ss]|[Ee][Ss]2018\\.[Aa][Ss][Yy][Nn][Cc][Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ee][Ss]2018\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss]2018\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2018\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2018\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss]2019\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2019\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2019\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2019\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss]2019\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2020\\.[Bb][Ii][Gg][Ii][Nn][Tt]|[Ee][Ss]2020\\.[Dd][Aa][Tt][Ee]|[Ee][Ss]2020\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2020\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2020\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2020\\.[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ee][Ss]2020\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2020\\.[Nn][Uu][Mm][Bb][Ee][Rr]|[Ee][Ss]2021\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2021\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2021\\.[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Ee][Ss]2021\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2022\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2022\\.[Ee][Rr][Rr][Oo][Rr]|[Ee][Ss]2022\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2022\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2022\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2022\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2022\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss]2023\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2023\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss]2023\\.[Ii][Nn][Tt][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ii][Nn][Tt][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Dd][Ii][Ss][Pp][Oo][Ss][Aa][Bb][Ll][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Bb][Ii][Gg][Ii][Nn][Tt]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]\\.[Ll][Ee][Gg][Aa][Cc][Yy])$"
849
+ "pattern": "^(?:[Ee][Ss]5|[Ee][Ss]6|[Ee][Ss]2015|[Ee][Ss]7|[Ee][Ss]2016|[Ee][Ss]2017|[Ee][Ss]2018|[Ee][Ss]2019|[Ee][Ss]2020|[Ee][Ss]2021|[Ee][Ss]2022|[Ee][Ss]2023|[Ee][Ss][Nn][Ee][Xx][Tt]|[Dd][Oo][Mm]|[Dd][Oo][Mm]\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Dd][Oo][Mm]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Ii][Mm][Pp][Oo][Rr][Tt][Ss][Cc][Rr][Ii][Pp][Tt][Ss]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ss][Cc][Rr][Ii][Pp][Tt][Hh][Oo][Ss][Tt]|[Ee][Ss]2015\\.[Cc][Oo][Rr][Ee]|[Ee][Ss]2015\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss]2015\\.[Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ee][Ss]2015\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss]2015\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2015\\.[Pp][Rr][Oo][Xx][Yy]|[Ee][Ss]2015\\.[Rr][Ee][Ff][Ll][Ee][Cc][Tt]|[Ee][Ss]2015\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss]2015\\.[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ee][Ss]2016\\.[Aa][Rr][Rr][Aa][Yy]\\.[Ii][Nn][Cc][Ll][Uu][Dd][Ee]|[Ee][Ss]2016\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2017\\.[Dd][Aa][Tt][Ee]|[Ee][Ss]2017\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2017\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2017\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2017\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2017\\.[Tt][Yy][Pp][Ee][Dd][Aa][Rr][Rr][Aa][Yy][Ss]|[Ee][Ss]2018\\.[Aa][Ss][Yy][Nn][Cc][Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ee][Ss]2018\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss]2018\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2018\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2018\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss]2019\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2019\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2019\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2019\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss]2019\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2020\\.[Bb][Ii][Gg][Ii][Nn][Tt]|[Ee][Ss]2020\\.[Dd][Aa][Tt][Ee]|[Ee][Ss]2020\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2020\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2020\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2020\\.[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ee][Ss]2020\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2020\\.[Nn][Uu][Mm][Bb][Ee][Rr]|[Ee][Ss]2021\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2021\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2021\\.[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Ee][Ss]2021\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2022\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2022\\.[Ee][Rr][Rr][Oo][Rr]|[Ee][Ss]2022\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2022\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2022\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2022\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2022\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss]2023\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2023\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss]2023\\.[Ii][Nn][Tt][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ii][Nn][Tt][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Dd][Ii][Ss][Pp][Oo][Ss][Aa][Bb][Ll][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Bb][Ii][Gg][Ii][Nn][Tt]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ii][Tt][Ee][Rr][Aa][Tt][Oo][Rr]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]\\.[Ll][Ee][Gg][Aa][Cc][Yy])$"
843
850
}
844
851
]
845
852
},
988
995
"description" : " Opt a project out of multi-project reference checking when editing." ,
989
996
"type" : " boolean" ,
990
997
"markdownDescription" : " Opt a project out of multi-project reference checking when editing.\n\n See more: https://www.typescriptlang.org/tsconfig#disableSolutionSearching"
998
+ },
999
+ "generateTrace" : {
1000
+ "description" : " Generates an event trace and a list of types." ,
1001
+ "type" : " boolean" ,
1002
+ "default" : false ,
1003
+ "markdownDescription" : " Generates an event trace and a list of types.\n\n See more: https://www.typescriptlang.org/tsconfig#generateTrace"
1004
+ },
1005
+ "noUncheckedSideEffectImports" : {
1006
+ "description" : " Check side effect imports." ,
1007
+ "type" : " boolean" ,
1008
+ "default" : false ,
1009
+ "markdownDescription" : " Check side effect imports.\n\n See more: https://www.typescriptlang.org/tsconfig#noUncheckedSideEffectImports"
1010
+ },
1011
+ "strictBuiltinIteratorReturn" : {
1012
+ "description" : " Built-in iterators are instantiated with a TReturn type of undefined instead of any." ,
1013
+ "type" : " boolean" ,
1014
+ "default" : false ,
1015
+ "markdownDescription" : " Built-in iterators are instantiated with a TReturn type of undefined instead of any.\n\n See more: https://www.typescriptlang.org/tsconfig#strictBuiltinIteratorReturn"
991
1016
}
992
1017
}
993
1018
}
Original file line number Diff line number Diff line change 98
98
"type" : " boolean" ,
99
99
"default" : false ,
100
100
"markdownDescription" : " Log paths used during the `moduleResolution` process.\n\n See more: https://www.typescriptlang.org/tsconfig#traceResolution"
101
+ },
102
+ "stopBuildOnErrors" : {
103
+ "description" : " Skip building downstream projects on error in upstream project." ,
104
+ "type" : " boolean" ,
105
+ "default" : false
101
106
}
102
107
}
103
108
}
1020
1025
"description" : " Opt a project out of multi-project reference checking when editing." ,
1021
1026
"type" : " boolean" ,
1022
1027
"markdownDescription" : " Opt a project out of multi-project reference checking when editing.\n\n See more: https://www.typescriptlang.org/tsconfig#disableSolutionSearching"
1028
+ },
1029
+ "generateTrace" : {
1030
+ "description" : " Generates an event trace and a list of types." ,
1031
+ "type" : " boolean" ,
1032
+ "default" : false
1033
+ },
1034
+ "noUncheckedSideEffectImports" : {
1035
+ "description" : " Check side effect imports." ,
1036
+ "type" : " boolean" ,
1037
+ "default" : false
1038
+ },
1039
+ "strictBuiltinIteratorReturn" : {
1040
+ "description" : " Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'." ,
1041
+ "type" : " boolean" ,
1042
+ "default" : false
1023
1043
}
1024
1044
}
1025
1045
}
You can’t perform that action at this time.
0 commit comments