mermaid/tests/webpack/webpack.config.js
Sidharth Vinod 605f288554
fix Lint
2022-11-08 19:33:50 +05:30

11 lines
228 B
JavaScript

// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist'),
},
};