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

22
webpack.main.config.ts Normal file
View file

@ -0,0 +1,22 @@
import type { Configuration } from "webpack";
import TsconfigPathsPlugin from "tsconfig-paths-webpack-plugin";
import { rules } from "./webpack.rules";
import { plugins } from "./webpack.plugins";
export const mainConfig: Configuration = {
/**
* This is the main entry point for your application, it's the first file
* that runs in the main process.
*/
entry: "./src/index.ts",
// Put your normal webpack config below here
module: {
rules,
},
plugins,
resolve: {
extensions: [".js", ".ts", ".jsx", ".tsx", ".css", ".json"],
plugins: [new TsconfigPathsPlugin()],
},
};