@storm-software/tsdoc 0.1.7 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/config/base.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
3
- "extends": ["./typedoc.json"],
3
+ "extends": [
4
+ "./typedoc.json",
5
+ "@microsoft/api-extractor/extends/tsdoc-config.json"
6
+ ],
4
7
  "tagDefinitions": [
5
8
  {
6
9
  "tagName": "@alias",
package/dist/index.cjs CHANGED
@@ -28,7 +28,10 @@ module.exports = __toCommonJS(index_exports);
28
28
  // src/base.json
29
29
  var base_default = {
30
30
  $schema: "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
31
- extends: ["./typedoc.json"],
31
+ extends: [
32
+ "./typedoc.json",
33
+ "@microsoft/api-extractor/extends/tsdoc-config.json"
34
+ ],
32
35
  tagDefinitions: [
33
36
  {
34
37
  tagName: "@alias",
package/dist/index.js CHANGED
@@ -1,7 +1,10 @@
1
1
  // src/base.json
2
2
  var base_default = {
3
3
  $schema: "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
4
- extends: ["./typedoc.json"],
4
+ extends: [
5
+ "./typedoc.json",
6
+ "@microsoft/api-extractor/extends/tsdoc-config.json"
7
+ ],
5
8
  tagDefinitions: [
6
9
  {
7
10
  tagName: "@alias",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/tsdoc",
3
- "version": "0.1.7",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "This package contains shared TSDoc configurations used in Storm Software projects.",
6
6
  "repository": {
@@ -67,10 +67,12 @@
67
67
  "files": ["config/**/*", "dist/**/*"],
68
68
  "keywords": ["tsdoc", "typedoc", "storm", "storm-ops", "storm-software"],
69
69
  "peerDependencies": {
70
+ "@microsoft/api-extractor": ">=7.52.0",
70
71
  "@microsoft/tsdoc": ">=0.15.0",
71
72
  "@microsoft/tsdoc-config": ">=0.17.0"
72
73
  },
73
74
  "peerDependenciesMeta": {
75
+ "@microsoft/api-extractor": { "optional": true },
74
76
  "@microsoft/tsdoc": { "optional": true },
75
77
  "@microsoft/tsdoc-config": { "optional": true }
76
78
  },