tabby/terminus-plugin-manager/webpack.config.js

59 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-04-15 03:53:19 +08:00
const path = require('path')
2017-06-21 05:28:58 +08:00
const webpack = require('webpack')
2017-04-15 03:53:19 +08:00
module.exports = {
target: 'node',
entry: 'src/index.ts',
2019-04-28 17:42:34 +08:00
devtool: 'eval-source-map',
2017-04-15 03:53:19 +08:00
context: __dirname,
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
pathinfo: true,
libraryTarget: 'umd',
2017-06-02 04:23:36 +08:00
devtoolModuleFilenameTemplate: 'webpack-terminus-plugin-manager:///[resource-path]',
2017-04-15 03:53:19 +08:00
},
2019-02-10 05:10:42 +08:00
mode: process.env.TERMINUS_DEV ? 'development' : 'production',
2018-10-12 06:17:02 +08:00
optimization:{
minimize: false,
},
2017-04-15 03:53:19 +08:00
resolve: {
modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
extensions: ['.ts', '.js'],
},
module: {
2018-05-20 22:12:05 +08:00
rules: [
2017-04-15 03:53:19 +08:00
{
test: /\.ts$/,
2018-05-20 22:12:05 +08:00
use: {
loader: 'awesome-typescript-loader',
query: {
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-15 03:53:19 +08:00
}
}
},
2017-06-02 04:23:36 +08:00
{ test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
2017-04-15 03:53:19 +08:00
{ test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
]
},
externals: [
2017-06-02 04:23:36 +08:00
'fs',
'npm',
2017-06-02 04:23:36 +08:00
'path',
'mz/fs',
2017-06-02 04:23:36 +08:00
'mz/child_process',
/^rxjs/,
2017-04-15 03:53:19 +08:00
/^@angular/,
/^@ng-bootstrap/,
/^terminus-/,
2017-06-21 05:28:58 +08:00
],
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
2017-04-15 03:53:19 +08:00
}