()
| 24 | } |
| 25 | |
| 26 | get compilerOptions(): ts.CompilerOptions { |
| 27 | if (!this.resolvedCompilerOptions) { |
| 28 | this.resolvedCompilerOptions = this.resolveCompilerOptions(); |
| 29 | this.listener?.onCompilerOptionsResolved(); |
| 30 | } |
| 31 | return this.resolvedCompilerOptions; |
| 32 | } |
| 33 | |
| 34 | private currentProgram: ts.Program | undefined = undefined; |
| 35 | private resolvedCompilerOptions: ts.CompilerOptions | undefined = undefined; |
nothing calls this directly
no test coverage detected