esbuild-plugin-typescript-decorators
v0.1.0
Published
让ESBuild支持装饰器
Downloads
11,641
Maintainers
Readme
English | 中文
The esbuild build tool does not support typescript's [
emitdecoratormetadata
] (https://esbuild.github.io/content-types/#no-type-system) by default.when using decorator development, when obtaining such as
Reflect.getMetadata ("design: type", target, key)
, it returnsundefined
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()
]
})