You've already forked matrix-react-sdk
							
							
				mirror of
				https://github.com/matrix-org/matrix-react-sdk.git
				synced 2025-11-04 11:51:45 +03:00 
			
		
		
		
	Empirically the build is fine with these, but it is unfortunate that we have to reply on deprecated semantics. TypeScript should help fix this.
		
			
				
	
	
		
			24 lines
		
	
	
		
			782 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			782 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
    "sourceMaps": "inline",
 | 
						|
    "presets": [
 | 
						|
        ["@babel/preset-env", {
 | 
						|
            "targets": [
 | 
						|
                "last 2 Chrome versions", "last 2 Firefox versions", "last 2 Safari versions"
 | 
						|
            ],
 | 
						|
        }],
 | 
						|
        "@babel/preset-typescript",
 | 
						|
        "@babel/preset-flow",
 | 
						|
        "@babel/preset-react"
 | 
						|
    ],
 | 
						|
    "plugins": [
 | 
						|
        ["@babel/plugin-proposal-decorators", {legacy: true}],
 | 
						|
        "@babel/plugin-proposal-export-default-from",
 | 
						|
        "@babel/plugin-proposal-numeric-separator",
 | 
						|
        "@babel/plugin-proposal-class-properties",
 | 
						|
        "@babel/plugin-proposal-object-rest-spread",
 | 
						|
        "@babel/plugin-transform-flow-comments",
 | 
						|
        "@babel/plugin-syntax-dynamic-import",
 | 
						|
        "@babel/plugin-transform-runtime"
 | 
						|
    ]
 | 
						|
};
 |