mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
import * as Webpack from "webpack";
|
|
import FailPlugin = require("webpack-fail-plugin");
|
|
|
|
const config: Webpack.Configuration = {
|
|
plugins: [
|
|
FailPlugin
|
|
]
|
|
}
|