У меня есть следующий проект:
https://github.com/napolev/stencil-cannot-find-name
, который содержит следующие два файла:
заказ container.tsx
import { Component, Element, State } from '@stencil/core';
@Component({
tag: 'custom-container',
styleUrl: 'custom-container.scss',
})
export class WebComponent {
@Element() el!: HTMLStencilElement;
@State() label: String = '<empty>';
componentDidLoad() {
document.querySelector('.button_get_anchor').addEventListener('click', () => {
let position = '<unset>';
position = this.el.querySelector('custom-details').getDefaultKnobEPosition();
this.label = position;
});
}
render() {
return [
<div class="label">{this.label}</div>,
<custom-details></custom-details>,
<div>
<button class="button_get_anchor">Get Anchor</button>
</div>
];
}
}
заказ details.tsx
import { Component, Method } from '@stencil/core';
@Component({
tag: 'custom-details',
styleUrl: 'custom-details.scss',
})
export class WebComponent {
render() {
return [
<div class="details">This is the "custom-details"</div>
];
}
@Method()
sayHelloWorldOnConsole() {
console.log('Hello World!');
}
//*
@Method()
getDefaultKnobEPosition(): Anchor {
return Anchor.Left;
}
//*/
}
export enum Anchor {
Left = 'left',
Center = 'center',
Right = 'right',
}
Моя проблема: Когда я запускаю:
$ npm start --es5
Я получаю следующую ошибку:
[ ERROR ] TypeScript: ./stencil-cannot-find-name/src/components.d.ts:66:39
Cannot find name 'Anchor'.
L65: interface CustomDetails {
L66: 'getDefaultKnobEPosition': () => Anchor;
L67: 'sayHelloWorldOnConsole': () => void;
[21:56.0] dev server: http://localhost:3333/
[21:56.0] build failed, watching for changes... in
15.59 s
, как вы можете видеть на следующем изображении:
Кроме того, даже до компиляции с npm
на Visual Studio Code
я получаю уведомление об этой проблеме, как вы можете видеть на следующем изображении:
Вот строка, которая вызывает проблему:
https://github.com/napolev/stencil-cannot-find-name/blob/master/src/components.d.ts#L66
где этот файл выше auto-generated
, поэтому я не могу изменить его, чтобы исправить проблему.
Есть идеи, как это решить?
Спасибо!