美文网首页
TSConfig文件详解35

TSConfig文件详解35

作者: 从零开始学ArchLinux | 来源:发表于2024-07-22 23:54 被阅读0次

    语言和环境相关配置01

    输出装饰器元数据 - emitDecoratorMetadata

    这个选项可以为支持的实验性的装饰器类型输出元数据,该元数据可以被模块 reflect-metadata 使用。

    例如,这里是 TypeScript:

    function LogMethod(
      target: any,
      propertyKey: string | symbol,
      descriptor: PropertyDescriptor
    ) {
      console.log(target);
      console.log(propertyKey);
      console.log(descriptor);
    }
    
    class Demo {
      @LogMethod
      public foo(bar: number) {
        // do nothing
      }
    }
    
    const demo = new Demo();
    

    如果 emitDecoratorMetadata 没有设置为 true(默认值),则输出如下的 JavaScript 代码:

    "use strict";
    var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
        var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
        if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
        else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
        return c > 3 && r && Object.defineProperty(target, key, r), r;
    };
    function LogMethod(target, propertyKey, descriptor) {
        console.log(target);
        console.log(propertyKey);
        console.log(descriptor);
    }
    class Demo {
        foo(bar) {
            // do nothing
        }
    }
    __decorate([
        LogMethod
    ], Demo.prototype, "foo", null);
    const demo = new Demo();
    

    如果 emitDecoratorMetadata 设置为 true,则输出的 JavaScript 代码为:

    "use strict";
    var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
        var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
        if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
        else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
        return c > 3 && r && Object.defineProperty(target, key, r), r;
    };
    var __metadata = (this && this.__metadata) || function (k, v) {
        if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
    };
    function LogMethod(target, propertyKey, descriptor) {
        console.log(target);
        console.log(propertyKey);
        console.log(descriptor);
    }
    class Demo {
        foo(bar) {
            // do nothing
        }
    }
    __decorate([
        LogMethod,
        __metadata("design:type", Function),
        __metadata("design:paramtypes", [Number]),
        __metadata("design:returntype", void 0)
    ], Demo.prototype, "foo", null);
    const demo = new Demo();
    

    装饰器实验 -experimentalDecorators

    这个选项可以启用对装饰器的实验性支持,这里的装饰器是 TC39 标准化过程小组的早期版本。

    装饰器是一种还未被JavaScript 规范完全批准的语言功能,这可能会导致 TypeScript 中的实现版本与 TC39 规定的 JavaScript 中的实现版本不同。

    您可以在TypeScript 手册中找到有关中装饰器支持的更多信息。

    相关文章

      网友评论

          本文标题:TSConfig文件详解35

          本文链接:https://www.haomeiwen.com/subject/qleyhjtx.html