()
| 386 | } |
| 387 | |
| 388 | function getTsCompilerOptionsJson(): any { |
| 389 | const tsconfigPath = path.join(EXTENSION_ROOT_DIR_FOR_TESTS, 'tsconfig.json'); |
| 390 | const jsonContent = ts.parseConfigFileTextToJson(tsconfigPath, fs.readFileSync(tsconfigPath, 'utf8')); |
| 391 | return ts.convertCompilerOptionsFromJson(jsonContent.config.compilerOptions, ''); |
| 392 | } |
| 393 | |
| 394 | /** Generate documentation for all classes in a set of .ts files */ |
| 395 | function generateDocumentationForCommonTypes(fileNames: string[]): void { |
no test coverage detected