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.
35 lines
609 B
35 lines
609 B
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: ['style-loader', 'css-loader'], |
|
exclude: /node_modules/ |
|
} |
|
], |
|
}, |
|
resolve: { |
|
extensions: ['.ts', '.js'], |
|
}, |
|
output: { |
|
filename: 'index.js', |
|
path: resolve('dist'), |
|
libraryTarget: 'umd', |
|
umdNamedDefine: true |
|
} |
|
};
|
|
|