tabby/terminus-community-color-schemes/webpack.config.js

53 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-04-12 18:12:57 +08:00
const path = require('path')
2017-06-21 05:28:58 +08:00
const webpack = require('webpack')
2017-04-12 18:12:57 +08:00
2017-04-11 08:22:48 +08:00
module.exports = {
target: 'node',
2017-04-12 04:45:59 +08:00
entry: 'src/index.ts',
2017-04-11 08:22:48 +08:00
devtool: 'source-map',
2017-04-12 18:12:57 +08:00
context: __dirname,
2017-04-11 08:22:48 +08:00
output: {
2017-04-12 18:12:57 +08:00
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
2017-04-11 08:22:48 +08:00
pathinfo: true,
libraryTarget: 'umd',
2017-04-12 04:45:59 +08:00
devtoolModuleFilenameTemplate: 'webpack-terminus-community-color-schemes:///[resource-path]',
2017-04-11 08:22:48 +08:00
},
2018-08-26 19:15:00 +08:00
mode: process.env.DEV ? 'development' : 'production',
2018-10-12 06:17:02 +08:00
optimization:{
minimize: false,
},
2017-04-11 08:22:48 +08:00
resolve: {
2017-04-12 18:12:57 +08:00
modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
2017-04-11 08:22:48 +08:00
extensions: ['.ts', '.js'],
},
module: {
2018-05-20 22:12:05 +08:00
rules: [
2017-04-12 18:12:57 +08:00
{
test: /\.ts$/,
2018-05-20 22:12:05 +08: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 18:12:57 +08:00
}
}
},
2018-05-20 22:12:05 +08:00
{ test: /[\\\/]schemes[\\\/]/, use: "raw-loader" },
2017-04-11 08:22:48 +08:00
]
},
2017-04-12 04:45:59 +08:00
externals: [
/^rxjs/,
/^@angular/,
/^@ng-bootstrap/,
/^terminus-/,
2017-06-21 05:28:58 +08:00
],
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
2017-04-11 08:22:48 +08:00
}