baf9dd8dfe3152e4ea104de0a9b83471b6e92368

This commit is contained in:
GitHub Actions 2024-04-09 23:30:27 +00:00
commit 9403236d7e
146 changed files with 37505 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",
}),
];