Giter Club home page Giter Club logo

Comments (4)

lukasbach avatar lukasbach commented on May 27, 2024 1

Can you try to add the following to the compiler options:

moduleResolution: options.monaco.languages.typescript.ModuleResolutionKind.NodeJs,
allowSyntheticDefaultImports: true,
rootDir: options.fileRootPath,

and if you're not already doing that, maybe also try importing AutoTypings from monaco-editor-auto-typings/custom-editor rather from monaco-editor-auto-typings directly.

from monaco-editor-auto-typings.

lukasbach avatar lukasbach commented on May 27, 2024

Hello @dolanmiu, thank you for your report. Can you share the code you put into monaco, and the code that you used to mount monaco and attach the auto-typings plugin?

from monaco-editor-auto-typings.

dolanmiu avatar dolanmiu commented on May 27, 2024

Very simple, but I pass my own version of monaco

const model = monaco.editor.createModel('', 'typescript', monaco.Uri.parse('inmemory://model/widget.tsx'));
model.updateOptions({ tabSize: 2 });
this.editor = monaco.editor.create(this.editorContainer.nativeElement, {
  model,
  language: 'typescript',
  theme: 'vs-dark',
  automaticLayout: true,
});

monaco.languages.typescript.typescriptDefaults.setCompilerOptions({
  ...monaco.languages.typescript.typescriptDefaults.getCompilerOptions(),
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
  jsx: 'react' as any,
  lib: ['dom', 'esnext'],
});

 this.autoTypings = await AutoTypings.create(this.editor, {
      monaco,
      sourceCache: storage, // Cache loaded sources in localStorage. May be omitted
      onUpdate: (u, t) => {
        if (u.type === 'StoredToCache' || u.type === 'LoadedFromCache') {
          for (const origin of CONSUMER_SPA_ORIGINS) {
            this.window.postMessage([t], origin);
          }
        }
      },
      onError: (e) => {
        for (const origin of CONSUMER_SPA_ORIGINS) {
          this.window.postMessage([e], origin);
        }
      },
    });

from monaco-editor-auto-typings.

adnanjpg avatar adnanjpg commented on May 27, 2024

Can you try to add the following to the compiler options:

moduleResolution: options.monaco.languages.typescript.ModuleResolutionKind.NodeJs,
allowSyntheticDefaultImports: true,
rootDir: options.fileRootPath,

and if you're not already doing that, maybe also try importing AutoTypings from monaco-editor-auto-typings/custom-editor rather from monaco-editor-auto-typings directly.

applying these steps fixed it for me, without specifying rootDir as I'm not sure where its value would come from.

from monaco-editor-auto-typings.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.