tabby/terminus-settings/webpack.config.js

59 lines
1.6 KiB
JavaScript
Raw Normal View History

2017-04-12 10:12:57 +00:00
const path = require('path')
2017-06-20 21:28:58 +00:00
const webpack = require('webpack')
2017-04-12 10:12:57 +00:00
2017-04-11 20:45:59 +00:00
module.exports = {
target: 'node',
entry: 'src/index.ts',
devtool: 'source-map',
2017-04-12 10:12:57 +00:00
context: __dirname,
2017-04-11 20:45:59 +00:00
output: {
2017-04-12 10:12:57 +00:00
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
2017-04-11 20:45:59 +00:00
pathinfo: true,
2017-04-12 10:12:57 +00:00
libraryTarget: 'umd',
2017-04-11 20:45:59 +00:00
devtoolModuleFilenameTemplate: 'webpack-terminus-settings:///[resource-path]',
},
2018-08-26 11:15:00 +00:00
mode: process.env.DEV ? 'development' : 'production',
2018-10-11 22:17:02 +00:00
optimization:{
minimize: false,
},
2017-04-11 20:45:59 +00:00
resolve: {
2017-04-12 10:12:57 +00:00
modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
2017-04-11 20:45:59 +00:00
extensions: ['.ts', '.js'],
},
module: {
2018-05-20 14:12:05 +00:00
rules: [
2017-04-12 10:12:57 +00:00
{
test: /\.ts$/,
2018-05-20 14:12:05 +00:00
use: {
loader: 'awesome-typescript-loader',
options: {
configFileName: path.resolve(__dirname, 'tsconfig.json'),
typeRoots: [path.resolve(__dirname, 'node_modules/@types')],
paths: {
"terminus-*": [path.resolve(__dirname, '../terminus-*')],
"*": [path.resolve(__dirname, '../app/node_modules/*')],
}
2017-04-12 10:12:57 +00:00
}
}
},
2017-04-11 20:45:59 +00:00
{ test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
{ test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
{ test: /\.css$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
2018-08-09 13:13:31 +00:00
{ test: /\.svg/, use: ['svg-inline-loader'] },
2017-04-11 20:45:59 +00:00
]
},
externals: [
'fs',
'path',
'os',
2017-04-11 20:45:59 +00:00
/^rxjs/,
/^@angular/,
/^@ng-bootstrap/,
/^terminus-/,
2017-06-20 21:28:58 +00:00
],
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
2017-04-11 20:45:59 +00:00
}