1
0
Files
frost-zx.github.io/docs/content/fix-eslint-unexpected-token-right-angle-bracket-error.md
2025-10-13 10:20:34 +08:00

614 B
Raw Blame History

title, date, lastmod, tags
title date lastmod tags
解决 ESLint 提示“Parsing error: Unexpected token <”的问题 2025-03-09T22:32:22Z 2025-10-12T18:14:59Z
开发
Web 前端
JavaScript
配置

解决 ESLint 提示“Parsing error: Unexpected token <”的问题

参考资料

解决方法

修改 ESLint 配置文件(.eslintrc.js

"parserOptions": {
    "ecmaFeatures": {
        "jsx": true,
        "modules": true
    }
}