我收到一个错误
对装饰器的实验性支持是一项可能在未来版本中更改的功能。在“tsconfig”或“jsconfig”中设置“experimentalDecorators”选项以删除此警告。
tsconfig.json
{
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
}
VsCode 设置
直接编码
import { Client } from 'discord.js';
import { DynamicMessage, OnReaction } from 'discord-dynamic-messages';
export class NumericEmojiMessage extends DynamicMessage {
private counter = 0;
@OnReaction(':one:')
public increment() {
this.counter = 1;
}
@OnReaction(':two:')
public decrement() {
this.counter = 2;
}
public render() {
return `Number: ${this.counter}`;
}
}
const client = new Client();
client.on('ready', () => {
client.on('message', (message) => {
if (message.channel !== null){
new NumericEmojiMessage().sendTo(message.channel);
}
});
});
client.login("Njg1MTA2MjQwNjgxOTM0OTcw.Xm-1HA.eRnzxS6hEB5Z7XoHLlTqjgsdqYk");
补充
tscofig.json
:好吧,或者使用存储库中的那个:tsconfig.json。
这是必要的,因为
Method Decorator
需要PropertyDescriptor
,它仅在 ES5 ( Docs ) 中添加。