(fileName: string, code: string)
| 190 | |
| 191 | protected extraFiles: Record<string, string> = {}; |
| 192 | public addExtraFile(fileName: string, code: string): this { |
| 193 | this.throwIfProgramExists("addExtraFile"); |
| 194 | this.extraFiles[fileName] = normalizeSlashes(code); |
| 195 | return this; |
| 196 | } |
| 197 | |
| 198 | private customTransformers?: ts.CustomTransformers; |
| 199 | public setCustomTransformers(customTransformers?: ts.CustomTransformers): this { |
nothing calls this directly
no test coverage detected