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

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