File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export interface CreateOptions {
2525 ignore? : string [];
2626 ignoreDiagnostics? : Array <number | string >;
2727 logError? : boolean ;
28+ moduleTypes? : Record <string , ' cjs' | ' esm' | ' package' >;
2829 pretty? : boolean ;
2930 project? : string ;
3031 projectSearchDir? : string ;
@@ -165,6 +166,8 @@ export interface TSCommon {
165166 // (undocumented)
166167 displayPartsToString: typeof _ts .displayPartsToString ;
167168 // (undocumented)
169+ Extension: typeof _ts .Extension ;
170+ // (undocumented)
168171 findConfigFile: typeof _ts .findConfigFile ;
169172 // (undocumented)
170173 flattenDiagnosticMessageText: typeof _ts .flattenDiagnosticMessageText ;
@@ -183,6 +186,8 @@ export interface TSCommon {
183186 // (undocumented)
184187 ModuleKind: typeof _ts .ModuleKind ;
185188 // (undocumented)
189+ ModuleResolutionKind: typeof _ts .ModuleResolutionKind ;
190+ // (undocumented)
186191 parseJsonConfigFileContent: typeof _ts .parseJsonConfigFileContent ;
187192 // (undocumented)
188193 readConfigFile: typeof _ts .readConfigFile ;
@@ -205,7 +210,7 @@ export interface TSCommon {
205210}
206211
207212// @public
208- export interface TsConfigOptions extends Omit <RegisterOptions , ' transformers' | ' readFile' | ' fileExists' | ' skipProject' | ' project' | ' dir' | ' cwd' | ' projectSearchDir' | ' scope ' | ' scopeDir ' | ' experimentalEsmLoader ' > {
213+ export interface TsConfigOptions extends Omit <RegisterOptions , ' transformers' | ' readFile' | ' fileExists' | ' skipProject' | ' project' | ' dir' | ' cwd' | ' projectSearchDir' | ' experimentalEsmLoader ' | ' optionBasePaths ' > {
209214}
210215
211216// @public
You can’t perform that action at this time.
0 commit comments