mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-11-04 02:29:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			261 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			261 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
const config = {
 | 
						|
  sourceMaps: true,
 | 
						|
  module: {
 | 
						|
    type: "commonjs",
 | 
						|
  },
 | 
						|
  jsc: {
 | 
						|
    parser: {
 | 
						|
      syntax: "typescript",
 | 
						|
      tsx: true,
 | 
						|
    },
 | 
						|
    transform: {
 | 
						|
      react: {
 | 
						|
        runtime: "automatic",
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
export default config;
 |