const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const CircularDependencyPlugin = require('circular-dependency-plugin') module.exports = { context: __dirname, entry: './src/index.ts', mode: 'development', module: { rules: [ { test: /\.ts?$/, exclude: /node_modules/, use: 'ts-loader', }, ] }, resolve: { extensions: ['.ts', '.js'] }, plugins: [ new HtmlWebpackPlugin({ template: "index.html", title: "Cabin Game", }), new CircularDependencyPlugin({ // exclude detection of files based on a RegExp exclude: /a\.js|node_modules/, // include specific files based on a RegExp include: /src/, // add errors to webpack instead of warnings failOnError: true, // allow import cycles that include an asyncronous import, // e.g. via import(/* webpackMode: "weak" */ './file.js') allowAsyncCycles: false, // set the current working directory for displaying module paths cwd: process.cwd(), }) ], }