diff --git a/.changeset/nine-tips-carry.md b/.changeset/nine-tips-carry.md new file mode 100644 index 00000000..e442fc67 --- /dev/null +++ b/.changeset/nine-tips-carry.md @@ -0,0 +1,5 @@ +--- +'@axis-backstage/plugin-jira-dashboard': patch +--- + +Add the "config.d.ts" file to the "files" in package.json. diff --git a/plugins/jira-dashboard/config.d.ts b/plugins/jira-dashboard/config.d.ts index aaa212b6..cd0b1412 100644 --- a/plugins/jira-dashboard/config.d.ts +++ b/plugins/jira-dashboard/config.d.ts @@ -2,19 +2,11 @@ export interface Config { /** * Configuration options for the Jira Dashboard plugin */ - jiraDashboard: - | { - /** - * Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com - * @visibility frontend - */ - annotationPrefix?: string; - } - | { - /** - * Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com - * @visibility frontend - */ - annotationPrefix?: string; - }; + jiraDashboard: { + /** + * Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com + * @visibility frontend + */ + annotationPrefix?: string; + }; } diff --git a/plugins/jira-dashboard/package.json b/plugins/jira-dashboard/package.json index 09f93381..eeb93b68 100644 --- a/plugins/jira-dashboard/package.json +++ b/plugins/jira-dashboard/package.json @@ -82,7 +82,8 @@ "msw": "^1.0.0" }, "files": [ - "dist" + "dist", + "config.d.ts" ], "configSchema": "config.d.ts" }