biofriction-wp-theme/node_modules/bs-recipes/recipes/webpack.typescript.react/webpack.common.config.js

28 lines
634 B
JavaScript

// For instructions about this file refer to
// webpack and webpack-hot-middleware documentation
var webpack = require('webpack');
var path = require('path');
module.exports = {
entry: [
'./src/main.tsx'
],
output: {
path: path.join(__dirname, 'app'),
publicPath: '/',
filename: 'dist/bundle.js'
},
plugins: [
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.NoErrorsPlugin(),
],
resolve: {
extensions: ['', '.tsx', '.ts', '.js']
},
module: {
loaders: [
{ test: /\.tsx$/, loader: 'ts-loader' }
]
}
};