b42d1d73679928412690780047914b6124c1f0ee

This commit is contained in:
GitHub Actions 2024-04-11 19:12:27 +00:00
commit 3d78a852b5
146 changed files with 37727 additions and 0 deletions

14
webpack.plugins.ts Normal file
View file

@ -0,0 +1,14 @@
import Dotenv from "dotenv-webpack";
import type IForkTsCheckerWebpackPlugin from "fork-ts-checker-webpack-plugin";
// eslint-disable-next-line @typescript-eslint/no-var-requires
const ForkTsCheckerWebpackPlugin: typeof IForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
export const plugins = [
new ForkTsCheckerWebpackPlugin({
logger: "webpack-infrastructure",
}),
new Dotenv({
path: "./.env",
}),
];