1.0.34 • Published 7 years ago

webpack-tandem-jsx-loader v1.0.34

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

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.
1.0.34

7 years ago

1.0.33

7 years ago

1.0.31

7 years ago

1.0.30

7 years ago

1.0.29

7 years ago

1.0.28

7 years ago

1.0.24

7 years ago

1.0.23

7 years ago

1.0.22

7 years ago

1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago