You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							716 B
						
					
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							716 B
						
					
					
				module.exports = {
 | 
						|
    "sourceMaps": "inline",
 | 
						|
    "presets": [
 | 
						|
        ["@babel/preset-env", {
 | 
						|
            "targets": [
 | 
						|
                "last 2 Chrome versions",
 | 
						|
                "last 2 Firefox versions",
 | 
						|
                "last 2 Safari versions",
 | 
						|
                "last 2 Edge versions",
 | 
						|
            ],
 | 
						|
        }],
 | 
						|
        "@babel/preset-typescript",
 | 
						|
        "@babel/preset-react",
 | 
						|
    ],
 | 
						|
    "plugins": [
 | 
						|
        "@babel/plugin-proposal-export-default-from",
 | 
						|
        "@babel/plugin-proposal-numeric-separator",
 | 
						|
        "@babel/plugin-proposal-class-properties",
 | 
						|
        "@babel/plugin-proposal-object-rest-spread",
 | 
						|
        "@babel/plugin-syntax-dynamic-import",
 | 
						|
        "@babel/plugin-transform-runtime",
 | 
						|
    ],
 | 
						|
};
 | 
						|
 |