We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stencil version:
@stencil/[email protected]
I'm submitting a:
[x] bug report [ ] feature request [ ] support request => Please do not submit support requests here, use one of these channels: https://stencil-worldwide.herokuapp.com/ or https://forum.ionicframework.com/
Current behavior:
Supporting src/components/interfaces.d.ts file is not included in dist/types/components/.
src/components/interfaces.d.ts
dist/types/components/
It is worth noting that dist/types/components.d.ts has the correct imports:
dist/types/components.d.ts
import { HTMLStencilElement, JSXBase } from '@stencil/core/internal'; import { Foo, Bar } from './components/interfaces'; export namespace Test { // ...
Expected behavior:
The output build includes dist/types/components/interfaces.d.ts.
dist/types/components/interfaces.d.ts
Steps to reproduce:
*Assumes structure from component starter
interfaces.d.ts
Related code:
// interfaces.d.ts export type Foo = "foo" | "Foo"; export type Bar = "bar" | "Bar";
Other information:
A workaround for this is to drop the declaration file extension and just use .ts (e.g., interfaces.ts)
.ts
interfaces.ts
The text was updated successfully, but these errors were encountered:
Can you test 1.15.0-2?
1.15.0-2
Sorry, something went wrong.
@manucorporat Sorry for the delay. Sadly, I don't see the interfaces file included. Here's a repro repo if it helps: https://github.com/jcfranco/stencil-declaration-files-not-included-in-dist
dea56be
No branches or pull requests
Stencil version:
I'm submitting a:
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support requests here, use one of these channels: https://stencil-worldwide.herokuapp.com/ or https://forum.ionicframework.com/
Current behavior:
Supporting
src/components/interfaces.d.ts
file is not included indist/types/components/
.It is worth noting that
dist/types/components.d.ts
has the correct imports:Expected behavior:
The output build includes
dist/types/components/interfaces.d.ts
.Steps to reproduce:
*Assumes structure from component starter
src/components/interfaces.d.ts
(see below).interfaces.d.ts
Related code:
Other information:
A workaround for this is to drop the declaration file extension and just use
.ts
(e.g.,interfaces.ts
)The text was updated successfully, but these errors were encountered: