redoc/build/webpack.dev.js

99 lines
2.1 KiB
JavaScript
Raw Normal View History

2016-08-28 21:46:10 +03:00
const webpack = require('webpack');
const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin;
const root = require('./helpers').root;
const VERSION = JSON.stringify(require('../package.json').version);
const IS_PRODUCTION = process.env.NODE_ENV === "production";
2016-08-28 21:46:10 +03:00
// TODO Refactor common parts of config
module.exports = {
context: root(),
devtool: 'source-map',
2016-08-28 21:46:10 +03:00
debug: false,
resolve: {
extensions: ['', '.ts', '.js', '.json', '.css', '.scss', '.html'],
root: root('lib'),
descriptionFiles: ['package.json'],
modules: [
'node_modules',
root('lib')
],
alias: {
'./lib/bootstrap': root('lib/bootstrap.dev'),
http: 'stream-http',
https: 'stream-http'
}
},
externals: {
2016-08-29 07:35:47 +03:00
"jquery": "jQuery"
2016-08-28 21:46:10 +03:00
},
node: {
fs: "empty"
},
entry: {
'redoc': './lib/index.ts',
'vendor': './lib/vendor.ts',
'polyfills': './lib/polyfills.ts'
},
devServer: {
outputPath: root('dist'),
watchOptions: {
poll: true
},
port: 9000,
hot: false,
stats: 'errors-only'
2016-08-28 21:46:10 +03:00
},
output: {
path: root('dist'),
filename: '[name].js',
sourceMapFilename: '[name].[id].map',
2016-08-28 21:46:10 +03:00
chunkFilename: '[id].chunk.js'
},
module: {
preLoaders: [{
test: /\.js$/,
loader: 'source-map'
}],
2016-08-28 21:46:10 +03:00
loaders: [{
test: /\.ts$/,
loaders: [
'awesome-typescript-loader',
'angular2-template-loader'
],
exclude: [/\.(spec|e2e)\.ts$/]
},{
test: /lib\/.*\.css$/,
loaders: ['raw-loader'],
exclude: [/redoc-initial-styles\.css$/]
},{
test: /\.css$/,
loaders: ['style', 'css?-import'],
exclude: [/lib\/(?!.*redoc-initial-styles).*\.css$/]
},{
test: /\.html$/,
loader: 'raw-loader'
}]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.optimize.CommonsChunkPlugin({
name: ['vendor', 'polyfills'],
minChunks: Infinity
}),
new webpack.DefinePlugin({
'IS_PRODUCTION': IS_PRODUCTION,
2016-08-28 21:46:10 +03:00
'LIB_VERSION': VERSION
}),
new ForkCheckerPlugin()
],
}