webpack-tandem-jsx-loader
v1.0.34
Published
JSX loader to help map JSX elements to their original source expression
Downloads
6
Readme
This Webpack loader adds additional information to JSX elements to help Tandem write JSX code. Currently it only works with React, but more libraries will be supported soon.
Here's basic Webpack config example:
exports.config = {
entry: 'src/index.ts',
output: {
filename: 'out/index.bundle.js',
},
module: {
loaders: [
{
test: /tsx?/,
loaders: 'webpack-tandem-jsx-loader!ts-loader?sourceMap'
}
]
}
};
Setup Checklist
Things that you need to do to your application configuration for this loader to work properly:
- [ ] Turn on source maps for all loaders in your webpack config. This usually just means adding
?sourceMap
. - [ ] Install the proper source code editor for Tandem.