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

49 lines
1.2 KiB
JavaScript
Raw Normal View History

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