我使用monaco-editor@0.10.0
in electron
,我为我的案例扩展了以下示例
https://github.com/Microsoft/monaco-editor-samples/blob/master/sample-electron/index.html
我想知道是否有任何方法可以为require
和import
语句设置工作目录。例如,我有文件dependency.js
,我想在编辑器中自动完成以下语句:
import dep from './dependency.js'
我尝试使用 options 设置 typescript/javascript 编译器baseUrl
,rootDirs
但没有成功。
baseUrl: 'file://pathToDir/'
//or
rootDirs: ['file://pathToDir/']