mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +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(),
|
|
],
|
|
});
|