mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 16:45:10 +08:00
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import * as webpack from "webpack";
|
|
import * as StylelintWebpackPlugin from "stylelint-webpack-plugin";
|
|
|
|
const compiler = webpack({
|
|
plugins: [
|
|
new StylelintWebpackPlugin(),
|
|
],
|
|
});
|