* Get the compiler options to be written into the tsconfig.json. * @param options commandlineOptions to be included in the compileOptions.
(options)
| 41300 | * @param options commandlineOptions to be included in the compileOptions. |
| 41301 | */ |
| 41302 | function getSerializedCompilerOption(options) { |
| 41303 | var compilerOptions = ts.extend(options, ts.defaultInitCompilerOptions); |
| 41304 | return serializeCompilerOptions(compilerOptions); |
| 41305 | } |
| 41306 | /** |
| 41307 | * Generate tsconfig configuration when running command line "--init" |
| 41308 | * @param options commandlineOptions to be generated into tsconfig.json |
no test coverage detected
searching dependent graphs…