Created
June 19, 2021 04:23
-
-
Save Volmarg/6ed916a504e43b657958c377556d005a to your computer and use it in GitHub Desktop.
vue ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "vue-cli", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"serve": "vue-cli-service serve", | |
"build": "vue-cli-service build", | |
"lint": "vue-cli-service lint" | |
}, | |
"dependencies": { | |
"core-js": "^3.6.5", | |
"vue": "^3.0.0", | |
"vue-class-component": "^8.0.0-0" | |
}, | |
"devDependencies": { | |
"@typescript-eslint/eslint-plugin": "^4.18.0", | |
"@typescript-eslint/parser": "^4.18.0", | |
"@vue/cli-plugin-babel": "~4.5.0", | |
"@vue/cli-plugin-eslint": "~4.5.0", | |
"@vue/cli-plugin-typescript": "~4.5.0", | |
"@vue/cli-service": "~4.5.0", | |
"@vue/compiler-sfc": "^3.0.0", | |
"@vue/eslint-config-standard": "^5.1.2", | |
"@vue/eslint-config-typescript": "^7.0.0", | |
"eslint": "^6.7.2", | |
"eslint-plugin-import": "^2.20.2", | |
"eslint-plugin-node": "^11.1.0", | |
"eslint-plugin-promise": "^4.2.1", | |
"eslint-plugin-standard": "^4.0.0", | |
"eslint-plugin-vue": "^7.0.0", | |
"typescript": "~4.1.5" | |
}, | |
"eslintConfig": { | |
"root": true, | |
"env": { | |
"node": true | |
}, | |
"extends": [ | |
"plugin:vue/vue3-essential", | |
"@vue/standard", | |
"@vue/typescript/recommended" | |
], | |
"parserOptions": { | |
"ecmaVersion": 2020 | |
}, | |
"rules": { | |
"semi": "error", | |
"prefer-const": ["error", { | |
"destructuring": "any", | |
"ignoreReadBeforeAssign": false | |
}] | |
} | |
}, | |
"browserslist": [ | |
"> 1%", | |
"last 2 versions", | |
"not dead" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment