diff --git a/src/compiler/transformers/type-library.ts b/src/compiler/transformers/type-library.ts index f9e91bd5ac8..01c33d6ec84 100644 --- a/src/compiler/transformers/type-library.ts +++ b/src/compiler/transformers/type-library.ts @@ -21,9 +21,7 @@ const TYPE_LIBRARY: d.JsonDocsTypeLibrary = {}; * @returns the unique ID for the type in question */ export function addToLibrary(type: ts.Type, typeName: string, checker: ts.TypeChecker): string { - console.log('adding ', typeName); const pathToTypeModule = getPathToTypeModule(type); - console.log('path::', pathToTypeModule); // for now we don't make any attempt to include types in node_modules if (pathToTypeModule.startsWith('node_modules')) { diff --git a/test/docs-json/src/components/my-component/my-component.tsx b/test/docs-json/src/components/my-component/my-component.tsx index 73982f32eab..1be5b0a46d7 100644 --- a/test/docs-json/src/components/my-component/my-component.tsx +++ b/test/docs-json/src/components/my-component/my-component.tsx @@ -7,7 +7,7 @@ import { importedInterface, ImportedInterface } from './imported-interface'; }) export class MyComponent { /** - * Returns a promise that resolves when the toast did dismiss. + * A comment, which should be included, I should think! */ @Method() onDidDismiss(arg: T): Promise> {