So after registering the files so the imports would resolve properly, I registered a tsconfig.json file with the following data: ```typescript fileSystemProvider.registerFile( new RegisteredMemoryFile( URI.file('tsconfig.json'), JSON.stringify({ "compilerOptions": { "baseUrl": "./" } }) ) ) ``` In my case I want to be able to import file without the use of a relative path: ```typescript import { Something } from 'Component' ``` instead of ```typescript import { Something } from './Component' ``` Since this however, I'm getting a bunch of errors in the console that I would like to fix, or at least understand why they are happening: <img width="841" alt="Image" src="https://github.com/user-attachments/assets/3b4e60dd-e23c-4b36-bfd3-76267abb13eb" /> Is there a service override that I'm missing ? I've updated the repository here if you need to see the error: https://github.com/jpdery/monaco-editor-wrapper-extension-host-error Thanks