Merge pull request #5361 from ethereum/yann300-patch-61

hide module resolution error
pull/5360/head
bunsenstraat 3 weeks ago committed by GitHub
commit 933454c281
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      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)

Loading…
Cancel
Save