We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 622c410 commit 83bc29cCopy full SHA for 83bc29c
src/typescript-reporter/reporter/ControlledWatchSolutionBuilderHost.ts
@@ -56,6 +56,20 @@ function createControlledWatchSolutionBuilderHost<TProgram extends ts.BuilderPro
56
deleteFile(fileName: string): void {
57
system.deleteFile(fileName);
58
},
59
+ getParsedCommandLine(fileName: string): ts.ParsedCommandLine | undefined {
60
+ return ts.getParsedCommandLineOfConfigFile(
61
+ fileName,
62
+ { skipLibCheck: true },
63
+ {
64
+ ...system,
65
+ onUnRecoverableConfigFileDiagnostic: (diagnostic) => {
66
+ if (reportDiagnostic) {
67
+ reportDiagnostic(diagnostic);
68
+ }
69
+ },
70
71
+ );
72
73
};
74
75
hostExtensions.forEach((hostExtension) => {
0 commit comments