mirror of
				https://github.com/hydralauncher/hydra.git
				synced 2025-03-09 15:40:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			443 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			443 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 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",
 | |
|   }),
 | |
| ];
 | 
