File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 34
34
matrix :
35
35
typescript-version :
36
36
- " latest"
37
+ - " ~5.8.0"
37
38
- " ~5.7.0"
38
39
- " ~5.6.0"
39
40
- " ~5.5.0"
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ declare namespace TsConfigJson {
18
18
| 'ES2022'
19
19
| 'ESNext'
20
20
| 'Node16'
21
+ | 'Node18'
21
22
| 'NodeNext'
22
23
| 'Preserve'
23
24
| 'None'
@@ -32,6 +33,7 @@ declare namespace TsConfigJson {
32
33
| 'es2022'
33
34
| 'esnext'
34
35
| 'node16'
36
+ | 'node18'
35
37
| 'nodenext'
36
38
| 'preserve'
37
39
| 'none' ;
@@ -1109,6 +1111,20 @@ declare namespace TsConfigJson {
1109
1111
Suppress deprecation warnings
1110
1112
*/
1111
1113
ignoreDeprecations ?: CompilerOptions . IgnoreDeprecations ;
1114
+
1115
+ /**
1116
+ Do not allow runtime constructs that are not part of ECMAScript.
1117
+
1118
+ @default false
1119
+ */
1120
+ erasableSyntaxOnly ?: boolean ;
1121
+
1122
+ /**
1123
+ Enable lib replacement.
1124
+
1125
+ @default true
1126
+ */
1127
+ libReplacement ?: boolean ;
1112
1128
} ;
1113
1129
1114
1130
namespace WatchOptions {
@@ -1160,12 +1176,12 @@ declare namespace TsConfigJson {
1160
1176
synchronousWatchDirectory ?: boolean ;
1161
1177
1162
1178
/**
1163
- Specifies a list of directories to exclude from watch
1179
+ Specifies a list of directories to exclude from watch.
1164
1180
*/
1165
1181
excludeDirectories ?: string [ ] ;
1166
1182
1167
1183
/**
1168
- Specifies a list of files to exclude from watch
1184
+ Specifies a list of files to exclude from watch.
1169
1185
*/
1170
1186
excludeFiles ?: string [ ] ;
1171
1187
} ;
You can’t perform that action at this time.
0 commit comments