fix(compiler): return emitted files from compilation results and align tests with emitted output handling
This commit is contained in:
@@ -197,7 +197,10 @@ export class TsCompiler {
|
||||
customOptions: CompilerOptions = {},
|
||||
taskInfo?: ITaskInfo
|
||||
): Promise<ICompileResult> {
|
||||
const options = this.createOptions(customOptions);
|
||||
const options = {
|
||||
...this.createOptions(customOptions),
|
||||
listEmittedFiles: true,
|
||||
};
|
||||
|
||||
if (options.skipLibCheck) {
|
||||
await this.handleSkipLibCheckWarning();
|
||||
|
||||
Reference in New Issue
Block a user