mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
219 B
TypeScript
11 lines
219 B
TypeScript
import BabelWebpackPlugin = require('babel-webpack-plugin');
|
|
|
|
new BabelWebpackPlugin();
|
|
new BabelWebpackPlugin({});
|
|
new BabelWebpackPlugin({
|
|
test: /\.js$/,
|
|
presets: ['es2015'],
|
|
sourceMaps: false,
|
|
compact: false
|
|
});
|