vue + vite installed and running

This commit is contained in:
2022-09-05 14:53:26 +02:00
parent 3149c92f11
commit 1a7ecfad8f
27 changed files with 4511 additions and 1 deletions

14
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,14 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-prettier'
],
parserOptions: {
ecmaVersion: 'latest'
}
}