(buildOptions)
| 124138 | } |
| 124139 | ts.createSolutionBuilderWithWatchHost = createSolutionBuilderWithWatchHost; |
| 124140 | function getCompilerOptionsOfBuildOptions(buildOptions) { |
| 124141 | var result = {}; |
| 124142 | ts.commonOptionsWithBuild.forEach(function (option) { |
| 124143 | if (ts.hasProperty(buildOptions, option.name)) |
| 124144 | result[option.name] = buildOptions[option.name]; |
| 124145 | }); |
| 124146 | return result; |
| 124147 | } |
| 124148 | function createSolutionBuilder(host, rootNames, defaultOptions) { |
| 124149 | return createSolutionBuilderWorker(/*watch*/ false, host, rootNames, defaultOptions); |
| 124150 | } |
no test coverage detected
searching dependent graphs…