Skip to content

Commit

Permalink
fix: add 'config.d.ts' to files
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Aronsson committed Jan 14, 2025
1 parent 63bad8e commit 8709430
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 deletions.
22 changes: 7 additions & 15 deletions plugins/jira-dashboard/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
}
3 changes: 2 additions & 1 deletion plugins/jira-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
"msw": "^1.0.0"
},
"files": [
"dist"
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts"
}

0 comments on commit 8709430

Please sign in to comment.