mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-04 12:54:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			231 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			231 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// eslint-disable-next-line @typescript-eslint/no-require-imports
 | 
						|
const path = require('path');
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  entry: './src/index.js',
 | 
						|
  output: {
 | 
						|
    filename: 'main.js',
 | 
						|
    path: path.resolve(__dirname, 'dist'),
 | 
						|
  },
 | 
						|
};
 |