Live video on the AT Protocol
1import type IForkTsCheckerWebpackPlugin from "fork-ts-checker-webpack-plugin";
2
3// eslint-disable-next-line @typescript-eslint/no-var-requires
4const ForkTsCheckerWebpackPlugin: typeof IForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
5
6export const plugins = [
7 new ForkTsCheckerWebpackPlugin({
8 logger: "webpack-infrastructure",
9 }),
10];