Initial commit

This commit is contained in:
2024-03-26 18:07:34 +01:00
commit 35e36a7bbb
16 changed files with 6653 additions and 0 deletions

10
webpack.plugins.ts Normal file
View File

@ -0,0 +1,10 @@
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',
}),
];