accountant-ui/webpack.config.js

136 lines
3.7 KiB
JavaScript
Raw Permalink Normal View History

2017-06-10 15:34:10 +02:00
/* jshint esversion: 6 */
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
2017-07-07 01:16:49 +02:00
const webpack = require('webpack');
2017-06-10 15:34:10 +02:00
module.exports = {
2017-06-10 20:24:51 +02:00
context: path.resolve(__dirname, 'src'),
2017-06-10 23:07:36 +02:00
entry: './app.js',
2017-06-10 15:34:10 +02:00
devtool: 'source-map',
2017-07-10 00:52:39 +02:00
resolve: {
// Add '.ts' and '.tsx' as a resolvable extension.
extensions: ['.webpack.js', '.web.js', '.ts', '.tsx', '.js', '.html']
},
2017-06-10 15:34:10 +02:00
module: {
rules: [{
enforce: 'pre',
test: /webpack\.config\.js$/,
include: path.resolve(__dirname),
loader: 'eslint-loader',
options: {
useEslintrc: false,
emitWarning: true,
emitError: true,
failOnWarning: true,
failOnError: true,
baseConfig: 'webpack',
rules: {
indent: ['error', 4]
},
},
2017-07-10 00:52:39 +02:00
}, {
// typescript linting
enforce: 'pre',
test: /\.tsx?$/,
exclude: /(node_modules|bootstrap)/,
loader: 'tslint-loader',
options: {
configFile: false,
emitErrors: true,
baseConfig: 'angular',
allowJs: true,
configuration: {
extends: ["angular-tslint-rules"],
include: [
'src/**/*'
],
rules: {
indent: ['error', 4]
},
},
},
}, {
test: /\.tsx?$/,
exclude: /node_modules/,
loader: 'ts-loader'
2017-06-10 15:34:10 +02:00
}, {
// Javascript
enforce: 'pre',
test: /\.jsx?$/,
2017-06-10 20:24:51 +02:00
//include: path.resolve(__dirname, 'src'),
2017-06-10 15:34:10 +02:00
exclude: /(node_modules|bootstrap)/,
loader: 'eslint-loader',
options: {
useEslintrc: false,
emitWarning: false,
emitError: true,
failOnWarning: false,
failOnError: true,
baseConfig: 'angular',
rules: {
indent: ['error', 4]
},
plugins: [
'angular',
'html',
'security',
'this',
'jquery',
'promise'
]
},
}, {
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader'
}, {
test: /\.html$/,
use: [
2017-06-10 20:24:51 +02:00
'ngtemplate-loader?relativeTo=/accountant-ui/src',
2017-06-10 15:34:10 +02:00
'html-loader'
]
}, {
test: /\.less$/,
use: [
'style-loader',
'css-loader',
'less-loader',
]
}, {
test: /\.css$/,
use: [
'style-loader',
'css-loader',
]
}, {
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
loader: 'url-loader?limit=100000'
}]
},
plugins: [
new HtmlWebpackPlugin({
title: 'Accountant',
template: 'index.ejs'
}),
2017-07-07 01:16:49 +02:00
new webpack.ProvidePlugin({
"window.jQuery": "jquery"
}),
2017-06-10 15:34:10 +02:00
],
output: {
path: path.resolve(__dirname, 'build'),
filename: 'js/bundle.js',
//publicPath: 'js'
},
devServer: {
proxy: {
'/api': {
target: 'http://localhost:5000',
secure: false
}
},
hot: true,
noInfo: false,
quiet: false,
}
};