@dvmm/bundle-ts-dec-webpack-plugin
v0.0.2
Published
Bundle type declarations into a single file.
Downloads
9
Readme
BundleTSDec
npm i --save-dev @dvmm/bundle-ts-dec-webpack-plugin
webpack.config.js
const BundleTSDecPlugin = require('@dvmm/bundle-ts-dec-webpack-plugin');
module.exports = {
...
plugins: [
...
new BundleTSDecPlugin({
moduleName:'some.path.moduleName',
out:'./lib/bundle.d.ts',
})
]
}