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.
- Host: GitHub
- URL: https://github.com/aitoroses/decorators-loader
- Owner: aitoroses
- Created: 2015-03-15T23:26:36.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-15T23:40:57.000Z (over 11 years ago)
- Last Synced: 2025-01-11T22:32:08.843Z (over 1 year ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'}
]
}
```