Skip to content

Commit

Permalink
chore: rename src/interface.d.ts to src/interface.ts
Browse files Browse the repository at this point in the history
This file is not generated by the compiler, but written manually.
So it should use the `.ts` file ending, not the `.d.ts`.
The incorrect file ending was causing errors with api-extractor.
  • Loading branch information
adrianschmidt committed Feb 2, 2024
1 parent e4006b7 commit 47403bf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion stencil.config.docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const config: Config = {
type: 'docs-custom',
strict: true,
generator: kompendium({
typeRoot: './src/interface.d.ts',
typeRoot: './src/interface.ts',
guides: guides,
}),
},
Expand Down
2 changes: 1 addition & 1 deletion stencil.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const config: Config = {
type: 'docs-custom',
strict: true,
generator: kompendium({
typeRoot: './src/interface.d.ts',
typeRoot: './src/interface.ts',
guides: guides,
}),
},
Expand Down

0 comments on commit 47403bf

Please sign in to comment.