when i use MonacoVscodeApiConfig, error occured:
Failed to resolve module specifier "@codingame/monaco-vscode-api/workers/editor.worker". Relative references must start with either "/", "./", or "../".

it was because of configureDefaultWorkerFactory, more accurately is defineDefaultWorkerLoaders, it loads workers, and
const defaultEditorWorkerService = () => new Worker(
new URL('@codingame/monaco-vscode-editor-api/esm/vs/editor/editor.worker.js', import.meta.url),
{ type: 'module' }
);
and in editor.worker.js
export * from '@codingame/monaco-vscode-api/workers/editor.worker'
its content include @codingame/monaco-vscode-api , this is a module name, and worker is load in browser web worker, but browser does not recoginze this, so that this comes run.
i guess this may be the reason
when i use MonacoVscodeApiConfig, error occured:

Failed to resolve module specifier "@codingame/monaco-vscode-api/workers/editor.worker". Relative references must start with either "/", "./", or "../".
it was because of
configureDefaultWorkerFactory, more accurately isdefineDefaultWorkerLoaders, it loads workers, andand in
editor.worker.jsits content include @codingame/monaco-vscode-api , this is a module name, and worker is load in browser web worker, but browser does not recoginze this, so that this comes run.
i guess this may be the reason