HansClaasen

Results 3 comments of HansClaasen

> Here's git hub repo of starter project with replicated issue: https://github.com/runr02/toplevelawaitissue.git @runr02 I am able to get the component to render after applying this patch: ```patch diff --git a/src/components/my-component/my-component.tsx...

@runr02 you are right. I actually didn't run the build command and only called `npm start` and it turns out that the behavior in watch mode is different and the...

I looked into this and happy to share my findings: Currently Stencils compiler is tightly coupled to the following module settings: [`/src/compiler/transpile/ts-config.ts#L29-L30`](https://github.com/ionic-team/stencil/blob/bacf98e2f3e007b3fab9b226334311ebfd116749/src/compiler/transpile/ts-config.ts#L29-L30) ```ts module: ts.ModuleKind.ESNext, moduleResolution: ts.ModuleResolutionKind.Node10 ``` These settings...