@gerrit0/typedoc
Advanced tools
Comparing version 0.15.9 to 0.15.10
@@ -141,3 +141,3 @@ "use strict"; | ||
}; | ||
Application.VERSION = '0.15.9'; | ||
Application.VERSION = '0.15.10'; | ||
__decorate([ | ||
@@ -144,0 +144,0 @@ component_1.Option({ |
@@ -63,3 +63,5 @@ "use strict"; | ||
} | ||
if (comment.hasTag('hidden') || comment.hasTag('ignore')) { | ||
if (comment.hasTag('hidden') | ||
|| comment.hasTag('ignore') | ||
|| (comment.hasTag('internal') && this.application.options.getCompilerOptions().stripInternal)) { | ||
if (!this.hidden) { | ||
@@ -66,0 +68,0 @@ this.hidden = []; |
@@ -59,2 +59,3 @@ "use strict"; | ||
const fileName = sourceFile.fileName; | ||
this.basePath.add(fileName); | ||
const file = this.getSourceFile(fileName, context.project); | ||
@@ -61,0 +62,0 @@ let position; |
@@ -31,3 +31,4 @@ "use strict"; | ||
toObject() { | ||
return Object.assign(Object.assign({}, super.toObject()), { name: this.name, asserts: this.asserts, targetType: this.targetType }); | ||
var _a; | ||
return Object.assign(Object.assign({}, super.toObject()), { name: this.name, asserts: this.asserts, targetType: (_a = this.targetType) === null || _a === void 0 ? void 0 : _a.toObject() }); | ||
} | ||
@@ -34,0 +35,0 @@ toString() { |
@@ -17,3 +17,3 @@ "use strict"; | ||
toObject(type, obj) { | ||
return Object.assign(Object.assign({}, obj), { name: type.name, asserts: type.asserts, targetType: type.targetType }); | ||
return Object.assign(Object.assign({}, obj), { name: type.name, asserts: type.asserts, targetType: type.targetType ? this.owner.toObject(type.targetType) : undefined }); | ||
} | ||
@@ -20,0 +20,0 @@ }; |
{ | ||
"name": "@gerrit0/typedoc", | ||
"description": "Create api documentation for TypeScript projects.", | ||
"version": "0.15.9", | ||
"version": "0.15.10", | ||
"homepage": "https://typedoc.org", | ||
@@ -56,3 +56,2 @@ "main": "dist/index.js", | ||
"nyc": "15.0.0-beta.0", | ||
"ts-node": "^8.4.1", | ||
"tslint": "^5.20.1" | ||
@@ -70,3 +69,4 @@ }, | ||
"test": "nyc --reporter=html --reporter=text-summary mocha --timeout=20000 dist/test/*.test.js", | ||
"test:ts": "mocha --require ts-node/register --watch-extensions ts --timeout=10000 src/test/*.test.ts", | ||
"prerebuild_specs": "npm run pretest", | ||
"rebuild_specs": "node scripts/rebuild_specs.js", | ||
"build": "tsc --project .", | ||
@@ -73,0 +73,0 @@ "postbuild": "node scripts/replace_application_version.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1341449
11
12174