0

我正在为我的 babel 插件制作一个自定义 babel 解析器,其中我有一个新符号,它工作得很棒,但 VS Code 不知道它并不断显示该符号的错误。

有没有办法为 VS Code 设置自定义解析器,或者我在配置中遗漏了一些东西?

babel.config.json

{
  "presets": ["@babel/preset-env"],
  "plugins": ["custom-plugin"]
}

自定义插件

const customParser = require('custom-parser')

const customPlugin = ({ types }) => {
return {
  parserOverride(code, opts) {
    return customParser.parse(code, opts)
  },
  ...
}
4

0 回答 0