(compilerOptions, flag)
| 20342 | } |
| 20343 | ts.isIncrementalCompilation = isIncrementalCompilation; |
| 20344 | function getStrictOptionValue(compilerOptions, flag) { |
| 20345 | return compilerOptions[flag] === undefined ? !!compilerOptions.strict : !!compilerOptions[flag]; |
| 20346 | } |
| 20347 | ts.getStrictOptionValue = getStrictOptionValue; |
| 20348 | function getAllowJSCompilerOption(compilerOptions) { |
| 20349 | return compilerOptions.allowJs === undefined ? !!compilerOptions.checkJs : compilerOptions.allowJs; |
no outgoing calls
no test coverage detected