An open API service indexing awesome lists of open source software.

https://github.com/aitoroses/decorators-loader

A loader for webpack for using js-decorators in your JS source code.
https://github.com/aitoroses/decorators-loader

Last synced: about 2 months ago
JSON representation

A loader for webpack for using js-decorators in your JS source code.

Awesome Lists containing this project

README

          

# decorators-loader

Webpack js-decorators loader for webpack. It works in conjuntion with other transpilers.

Check out [js-decorators](https://github.com/aitoroses/js-decorators).

## Use

For using it in conjuntion with another transpiler.

```js
module: {
loaders: [
{test: /\.js$/, loader: 'babel!decorators'}
]
}
```