first commit

This commit is contained in:
Hydra 2024-04-14 04:20:27 +01:00
commit 992ec5ab49
No known key found for this signature in database
145 changed files with 37479 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",
}),
];