创建typescript工程,模版例子里面的装饰器报错

错误提示:Please do not specifiy “default” attribute in decorator of “text” property in “SuperClass” class.

const {ccclass, property, executionOrder} = cc._decorator;

@ccclass
@executionOrder(1)
export default class SuperClass extends cc.Component {

    @property(cc.Label)
    label: cc.Label = null;

    @property({
        default: 'hello'
    })
    text: string;

    async onLoad() {
        // init logic
        this.label.string = await this.testAsync();
    }

    protected async testAsync(): Promise<string> {
        return new Promise<string>((resolve, reject) => {
            setTimeout(() => {
                resolve("Hello, World!");
            }, 1000)
        })
    }
}

CocosCreator v1.6.1
typescript v2.4.2
node v6.9.5

备份:http://forum.cocos.com/t/1-5-0-beta2-typescript-propery-bug/45851

file: ‘file:///d%3A/work/try/CaiZhangDie/assets/Script/SuperClass.ts’
severity: ‘错误’
message: ‘Argument of type ‘{ default: string; }’ is not assignable to parameter of type ‘string | number | boolean | Function | any[] | { type?: any; url?: typeof RawAsset; visible?: boo…’.
Object literal may only specify known properties, and ‘default’ does not exist in type ‘string | number | boolean | Function | any[] | { type?: any; url?: typeof RawAsset; visible?: boo…’.’
at: ‘11,9’
source: ‘ts’

谢谢反馈,这个问题在 1.6.2 解决了
现在建议手动修改一下报警告的代码

好的,多谢