CoffeeScript loader for webpack with JSX support

January 4, 2015 ยท View on GitHub

Usage

var exportsOfFile = require("coffee-jsx!./file.cjsx");
// => return exports of executed and compiled file.cjsx

Documentation: Using loaders

Recommended configuration

{
	module: {
		loaders: [
			{ test: /\.cjsx$/, loader: "coffee-jsx-loader" }
		]
	}
}

License

MIT (http://www.opensource.org/licenses/mit-license.php)

Contents

  1. 1Usage
  2. 1.1Recommended configuration
  3. 2License