redoc/demo/webpack.config.ts

140 lines
3.3 KiB
TypeScript
Raw Normal View History

2018-03-13 13:58:22 +03:00
import * as webpack from 'webpack';
import * as HtmlWebpackPlugin from 'html-webpack-plugin';
2018-03-17 18:58:28 +03:00
import * as ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import * as CopyWebpackPlugin from 'copy-webpack-plugin';
2018-03-17 18:58:28 +03:00
import { resolve } from 'path';
import { compact } from 'lodash';
2018-03-13 13:58:22 +03:00
const VERSION = JSON.stringify(require('../package.json').version);
const REVISION = JSON.stringify(
require('child_process')
.execSync('git rev-parse --short HEAD')
.toString()
.trim(),
);
2018-03-17 18:58:28 +03:00
function root(filename) {
return resolve(__dirname + '/' + filename);
}
const tsLoader = env => ({
loader: 'ts-loader',
options: {
compilerOptions: {
module: env.bench ? 'esnext' : 'es2015',
},
},
});
const babelLoader = mode => ({
2018-03-17 18:58:28 +03:00
loader: 'babel-loader',
options: {
plugins: compact([
2018-03-17 18:58:28 +03:00
'@babel/plugin-syntax-typescript',
'@babel/plugin-syntax-decorators',
'@babel/plugin-syntax-jsx',
2018-03-26 18:13:39 +03:00
mode !== 'production' ? 'react-hot-loader/babel' : undefined,
[
'babel-plugin-styled-components',
{
minify: true,
displayName: mode !== 'production',
},
],
]),
2018-03-17 18:58:28 +03:00
},
});
2018-03-17 18:58:28 +03:00
export default (env: { playground?: boolean; bench?: boolean } = {}, { mode }) => ({
entry: [
root('../src/polyfills.ts'),
root(
env.playground
? 'playground/hmr-playground.tsx'
: env.bench ? '../benchmark/index.tsx' : 'index.tsx',
),
],
2018-03-13 13:58:22 +03:00
output: {
filename: 'redoc-demo.bundle.js',
2018-03-17 18:58:28 +03:00
path: root('dist'),
globalObject: 'this',
2018-03-13 13:58:22 +03:00
},
devServer: {
contentBase: __dirname,
watchContentBase: true,
2018-03-17 18:58:28 +03:00
port: 9090,
disableHostCheck: true,
stats: 'minimal',
2018-03-13 13:58:22 +03:00
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.json'],
},
2018-03-17 16:11:52 +03:00
node: {
fs: 'empty',
},
2018-03-13 13:58:22 +03:00
2018-03-17 18:58:28 +03:00
performance: false,
externals: {
esprima: 'esprima',
'node-fetch': 'null',
},
2018-03-13 13:58:22 +03:00
module: {
rules: [
{ enforce: 'pre', test: /\.js$/, loader: 'source-map-loader' },
{ test: [/\.eot$/, /\.gif$/, /\.woff$/, /\.svg$/, /\.ttf$/], use: 'null-loader' },
{
test: /\.tsx?$/,
use: [tsLoader(env), babelLoader(mode)],
2018-03-13 13:58:22 +03:00
exclude: ['node_modules'],
},
{
test: /\.css$/,
use: {
loader: 'css-loader',
options: {
sourceMap: true,
minimize: true,
},
},
},
{
test: /node_modules\/(swagger2openapi|reftools)\/.*\.js$/,
use: {
2018-03-17 16:11:52 +03:00
loader: 'ts-loader',
options: {
2018-03-17 18:58:28 +03:00
transpileOnly: true,
instance: 'ts2js-transpiler-only',
compilerOptions: {
allowJs: true,
},
},
},
},
2018-03-13 13:58:22 +03:00
],
},
plugins: [
new webpack.DefinePlugin({
__REDOC_VERSION__: VERSION,
__REDOC_REVISION__: REVISION,
}),
new webpack.NamedModulesPlugin(),
new webpack.optimize.ModuleConcatenationPlugin(),
new HtmlWebpackPlugin({
2018-03-17 18:58:28 +03:00
template: env.playground ? 'demo/playground/index.html' : 'demo/index.html',
2018-03-13 13:58:22 +03:00
}),
2018-03-17 18:58:28 +03:00
new ForkTsCheckerWebpackPlugin(),
ignore(/js-yaml\/dumper\.js$/),
ignore(/json-schema-ref-parser\/lib\/dereference\.js/),
new CopyWebpackPlugin(['demo/openapi.yaml']),
2018-03-13 13:58:22 +03:00
],
2018-03-17 18:58:28 +03:00
});
function ignore(regexp) {
return new webpack.NormalModuleReplacementPlugin(regexp, require.resolve('lodash/noop.js'));
}