mirror of https://github.com/mode777/rayjs.git
				
				
				
			
		
			
	
	
		
			25 lines
		
	
	
		
			454 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			454 B
		
	
	
	
		
			JavaScript
		
	
	
	
| 
								 | 
							
								const path = require('path');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = {
							 | 
						||
| 
								 | 
							
								  entry: './src/index.ts',
							 | 
						||
| 
								 | 
							
								  devtool: false,
							 | 
						||
| 
								 | 
							
								  target: "node",
							 | 
						||
| 
								 | 
							
								  mode: 'production',
							 | 
						||
| 
								 | 
							
								  module: {
							 | 
						||
| 
								 | 
							
								    rules: [
							 | 
						||
| 
								 | 
							
								      {
							 | 
						||
| 
								 | 
							
								        test: /\.tsx?$/,
							 | 
						||
| 
								 | 
							
								        use: 'ts-loader',
							 | 
						||
| 
								 | 
							
								        exclude: /node_modules/,
							 | 
						||
| 
								 | 
							
								      },
							 | 
						||
| 
								 | 
							
								    ],
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								  resolve: {
							 | 
						||
| 
								 | 
							
								    extensions: ['.tsx', '.ts', '.js'],
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								  output: {
							 | 
						||
| 
								 | 
							
								    filename: 'generate-bindings.js',
							 | 
						||
| 
								 | 
							
								    path: path.resolve(__dirname, '..'),
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								};
							 |