【Vue】整合monaco-editor编译报错 ERROR in ./node_modules/monaco-editor/esm/vs/language/typescript/tsMode.js

目录

报错

报错原因

解决办法

1.安装依赖

2.添加配置文件


报错

我在使用 SpringBoot + Vue + monaco 写项目的过程中出现了如下报错:

ERROR in ./node_modules/monaco-editor/esm/vs/language/typescript/tsMode.js                                                                                   
Module build failed (from ./node_modules/babel-loader/lib/index.js):
SyntaxError: D:\my\else\code-learning2\yupi\yuoj-frontend\node_modules\monaco-editor\esm\vs\language\typescript\tsMode.js: Static class blocks are not enabled. Please add `@babel/plugin-transform-class-static-block` to your configuration.
  829 |   }
  830 | };
> 831 | var Kind = class {
      |            ^
  832 |   static {
  833 |     this.unknown = "";
  834 |   }

报错原因

观察报错信息,我们发现配置中缺少了 @babel/plugin-transform-class-static-block 模块,Babel配置中没有启用静态类块的转换。

解决办法

1.安装依赖

命令行中进入项目目录,安装 @babel/plugin-transform-class-static-block 模块

npm install --save-dev @babel/plugin-transform-class-static-block

 

2.添加配置文件

进入 Babel 配置文件(.babelrc 或 babel.config.js),加入下方代码,

.babelrc

{
  "plugins": ["@babel/plugin-transform-class-static-block"]
}

babel.config.js

module.exports = {
  plugins: [
    '@babel/plugin-transform-class-static-block'
  ]
};

然后,重新运行项目,问题解决!

 

感谢您的提问!@monaco-editor是一个基于web的代码编辑器,它可以用来在web应用中嵌入一个代码编辑器。下面是@monaco-editor的详细用法: 1. 安装@monaco-editor 在你的项目中通过npm或yarn安装@monaco-editor: ``` npm install monaco-editor ``` 2. 引入@monaco-editor 在你的代码中引入@monaco-editor,并创建一个编辑器实例: ```javascript import * as monaco from 'monaco-editor'; const editor = monaco.editor.create(document.getElementById('editor'), { value: 'console.log("Hello, world!");', language: 'javascript' }); ``` 这个例子中,我们通过monaco.editor.create方法创建了一个编辑器实例,并将其放在了id为"editor"的DOM元素中。我们还为编辑器设置了初始值和语言。 3. 配置@monaco-editor 你可以通过调用编辑器实例的方法来配置编辑器,例如: ```javascript editor.updateOptions({ fontSize: 16, wordWrap: 'on' }); ``` 这个例子中,我们通过updateOptions方法更改了编辑器的字体大小和自动换行设置。 4. 监听@monaco-editor事件 你可以通过监听编辑器实例的事件来响应编辑器中的操作,例如: ```javascript editor.onDidBlurEditorText(() => { console.log('Editor lost focus'); }); ``` 这个例子中,我们通过onDidBlurEditorText方法监听了编辑器失去焦点事件,并在控制台中输出了一条消息。 希望这些信息能够帮助您了解@monaco-editor的用法。如果您有任何其他问题,请随时向我提问。
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

水w

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值