Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
Hi everyone I am migrating my vue3 project from js to typescript, I run into this problem :
Here is my code in .vue file
<script setup lang="ts">
const toto = (msg: string) => {
console.log(msg)
</script>
And here is my eslintrc.js
module.exports = {
'env': {
'browser': true,
'es2021': true
'extends': [
'eslint:recommended',
'plugin:vue/vue3-essential'
'parserOptions': {
'ecmaVersion': 13,
'sourceType': 'module'
'plugins': [
'vue'
'rules': {
'vue/multi-word-component-names': 'off',
'vue/object-curly-spacing': [2, 'always'],
'vue/html-closing-bracket-spacing': [2, {
'selfClosingTag': 'always'
'vue/max-attributes-per-line': [2, {
'singleline': {
'max': 1
'multiline': {
'max': 1
'semi': [2, 'never']
–
–
You need to configure eslint to support typescript as eslint doesn't support it out of the box.
First, you need to install @typescript-eslint/parser and then @typescript-eslint/eslint-plugin.
Once you have installed these, update your config as follows-
module.exports = {
'env': {
'browser': true,
'es2021': true,
node: true
'extends': [
'eslint:recommended',
'plugin:vue/vue3-essential'
'parserOptions': {
'ecmaVersion': 12,
'sourceType': 'module',
parser: '@typescript-eslint/parser'
'plugins': [
'vue',
'@typescript-eslint'
'rules': {
'vue/multi-word-component-names': 'off',
'vue/object-curly-spacing': [2, 'always'],
'vue/html-closing-bracket-spacing': [2, {
'selfClosingTag': 'always'
'vue/max-attributes-per-line': [2, {
'singleline': {
'max': 1
'multiline': {
'max': 1
'semi': [2, 'never']
–
In my case, the problem was that I was using the parser option as an array, instead of a string:
parserOptions: {
- parser: ['@typescript-eslint/parser'],
+ parser: '@typescript-eslint/parser',
I had this problem on node v12.22.9. By upgrading to v14.21.2, I no longer had the parsing error. You can upgrade/install with the command
nvm install v14.21.2
–
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.