mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
first commit
This commit is contained in:
commit
992ec5ab49
145 changed files with 37479 additions and 0 deletions
14
webpack.plugins.ts
Normal file
14
webpack.plugins.ts
Normal 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",
|
||||
}),
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue