You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
692 B
38 lines
692 B
3 years ago
|
const path = require('path');
|
||
|
|
||
|
function resolve(dir) {
|
||
|
return path.join(__dirname, '..', dir)
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
context: resolve('src'),
|
||
|
entry: './index.ts',
|
||
|
plugins: [],
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.ts$/,
|
||
|
use: 'ts-loader',
|
||
|
exclude: /node_modules/
|
||
|
},
|
||
|
{
|
||
|
test: /\.css$/,
|
||
|
use: [
|
||
|
{ loader: 'style-loader', options: { injectType: 'lazyStyleTag' } },
|
||
|
'css-loader',
|
||
|
],
|
||
|
exclude: /node_modules/
|
||
|
}
|
||
|
],
|
||
|
},
|
||
|
resolve: {
|
||
|
extensions: ['.ts', '.js'],
|
||
|
},
|
||
|
output: {
|
||
|
filename: 'index.js',
|
||
|
path: resolve('dist'),
|
||
|
libraryTarget: 'umd',
|
||
|
umdNamedDefine: true
|
||
|
}
|
||
|
};
|