0.1.0 • Published 10 months ago

@kang-heewon/esbuild-plugin-typescript-decorators v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

English  |  中文


The esbuild build tool does not support typescript's emitdecoratormetadata by default.

when using decorator development, when obtaining such as Reflect.getMetadata ("design: type", target, key), it returns undefined by default. However, using this plugin, it will return the correct value by use the above method

Usage

import esbuild from 'esbuild'
import { esbuildDecorators } from 'esbuild-plugin-typescript-decorators'

esbuild.build({
    // ...config,
    plugins: [
        esbuildDecorators()
    ]
})