24 lines
		
	
	
		
			488 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			488 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
|  | module.exports = { | ||
|  |     "env": { | ||
|  |         "browser": true, | ||
|  |         "es2021": true | ||
|  |     }, | ||
|  |     "extends": [ | ||
|  |         "eslint:recommended", | ||
|  |         "plugin:vue/essential", | ||
|  |         "plugin:@typescript-eslint/recommended", | ||
|  |         'plugin:vue/vue3-recommended', | ||
|  |     ], | ||
|  |     "parserOptions": { | ||
|  |         "ecmaVersion": 13, | ||
|  |         "parser": "@typescript-eslint/parser", | ||
|  |         "sourceType": "module" | ||
|  |     }, | ||
|  |     "plugins": [ | ||
|  |         "vue", | ||
|  |         "@typescript-eslint" | ||
|  |     ], | ||
|  |     "rules": { | ||
|  |     } | ||
|  | }; |