1.0.1 • Published 5 years ago

jsx-vanilla-loader v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Description

JSX Vanilla loader for webpack

Examples of webpack.config.js

const path = require('path');

module.exports = {
	mode: "development",
	devtool : 'source-map',
	entry: {
		main: "./src/main.js"
	},
	output: {
		path: path.resolve(__dirname, '../js'),
		filename: "[name].js"
	},
	module : {
    rules : [
		{
        test : /\.js$/,
        include : path.resolve(__dirname, "src"),
        loader : 'jsx-vanilla-loader'
      }
    ]
  }
}
1.0.1

5 years ago

1.0.0

5 years ago

0.0.4

5 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago