From 792994618ad4a680549ebc5bce91cc42b5d88a7d Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 31 Oct 2024 12:57:59 +0100 Subject: [PATCH] hide module resolution error --- libs/remix-ui/editor/src/lib/remix-ui-editor.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/remix-ui/editor/src/lib/remix-ui-editor.tsx b/libs/remix-ui/editor/src/lib/remix-ui-editor.tsx index 9a3957eb8c..2d92abe1a3 100644 --- a/libs/remix-ui/editor/src/lib/remix-ui-editor.tsx +++ b/libs/remix-ui/editor/src/lib/remix-ui-editor.tsx @@ -992,6 +992,9 @@ export const EditorUI = (props: EditorUIProps) => { // Allow JSON schema requests monacoRef.current.languages.json.jsonDefaults.setDiagnosticsOptions({ enableSchemaRequest: true }) + // hide the module resolution error. We have to remove this when we know how to properly resolve imports. + monacoRef.current.languages.typescript.typescriptDefaults.setDiagnosticsOptions({ diagnosticCodesToIgnore: [2792] }) + // Register a tokens provider for the language monacoRef.current.languages.setMonarchTokensProvider('remix-solidity', solidityTokensProvider as any) monacoRef.current.languages.setLanguageConfiguration('remix-solidity', solidityLanguageConfig as any)