Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function compileJsdoc(sourcePath: string) {
jsdocApi.renderSync({
files: sourcePath,
cache: false,
destination: DEST_DIR,
readme: README_PATH,
template: TEMPLATE_PATH,
configure: CONFIG_PATH
} as any);
}