mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 17:28:06 +00:00
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
const path = require('path')
|
|
const webpack = require('webpack')
|
|
|
|
module.exports = {
|
|
target: 'node',
|
|
entry: 'src/index.ts',
|
|
devtool: 'source-map',
|
|
context: __dirname,
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'index.js',
|
|
pathinfo: true,
|
|
libraryTarget: 'umd',
|
|
devtoolModuleFilenameTemplate: 'webpack-terminus-community-color-schemes:///[resource-path]',
|
|
},
|
|
resolve: {
|
|
modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
|
|
extensions: ['.ts', '.js'],
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.ts$/,
|
|
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/*')],
|
|
}
|
|
}
|
|
},
|
|
{ test: /[\\\/]schemes[\\\/]/, loader: "raw-loader" },
|
|
]
|
|
},
|
|
externals: [
|
|
/^rxjs/,
|
|
/^@angular/,
|
|
/^@ng-bootstrap/,
|
|
/^terminus-/,
|
|
],
|
|
plugins: [
|
|
new webpack.optimize.ModuleConcatenationPlugin(),
|
|
],
|
|
}
|