From 47403bfd0b5fa8c39a3b4acc7ba5520fd384e139 Mon Sep 17 00:00:00 2001 From: Adrian Schmidt Date: Fri, 19 Jan 2024 22:25:28 +0100 Subject: [PATCH] chore: rename `src/interface.d.ts` to `src/interface.ts` 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. --- src/{interface.d.ts => interface.ts} | 0 stencil.config.docs.ts | 2 +- stencil.config.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{interface.d.ts => interface.ts} (100%) diff --git a/src/interface.d.ts b/src/interface.ts similarity index 100% rename from src/interface.d.ts rename to src/interface.ts diff --git a/stencil.config.docs.ts b/stencil.config.docs.ts index 10f47d13dd..5d0b727cc3 100644 --- a/stencil.config.docs.ts +++ b/stencil.config.docs.ts @@ -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, }), }, diff --git a/stencil.config.ts b/stencil.config.ts index 897bf97c43..f536e5e21a 100644 --- a/stencil.config.ts +++ b/stencil.config.ts @@ -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, }), },