31 lines
		
	
	
		
			752 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			752 B
		
	
	
	
		
			Plaintext
		
	
	
	
| {
 | |
| 	"presets": [
 | |
| 		"@babel/env",
 | |
| 		"@babel/preset-react"
 | |
| 	],
 | |
| 	"plugins": [
 | |
| 		[
 | |
| 			"@babel/plugin-proposal-decorators",
 | |
| 			{
 | |
| 				// "decoratorsBeforeExport": true,
 | |
| 				"legacy": true
 | |
| 			}
 | |
| 		],
 | |
| 		[
 | |
| 			"@babel/plugin-proposal-class-properties",
 | |
| 			{
 | |
| 				"loose": true
 | |
| 			}
 | |
| 		],
 | |
| 		"@babel/plugin-proposal-export-namespace-from",
 | |
| 		"jsx-control-statements",
 | |
| 		"@babel/plugin-proposal-function-sent",
 | |
| 		"@babel/plugin-proposal-json-strings",
 | |
| 		"@babel/plugin-proposal-numeric-separator",
 | |
| 		"@babel/plugin-proposal-throw-expressions",
 | |
| 		"@babel/plugin-syntax-dynamic-import",
 | |
| 		"@babel/plugin-syntax-import-meta",
 | |
| 		["@babel/plugin-transform-private-methods", { "loose": true }],
 | |
| 		["@babel/plugin-transform-private-property-in-object", { "loose": true }]
 | |
| 	]
 | |
| } |