josdejong / jsoneditor

A web-based tool to view, edit, format, and validate JSON
http://jsoneditoronline.org
Apache License 2.0
11.56k stars 2.04k forks source link

How to add jsoneditor to Stenciljs / Ionic app #1124

Open TakhirMamirov opened 3 years ago

TakhirMamirov commented 3 years ago

I have a Stenciljs app with Ionic components. Whenever I try to import / use JSONEditor, it says:

import * as JSONEditor from 'jsoneditor';

var container = document.getElementById("jsoneditor");
        var options = {
            mode: 'tree'
        };
        console.log(JSONEditor)
        var editor = new JSONEditor(container, options);

TypeError: JSONEditor is not a constructor

How JSON Editor shall be used in my app?

josdejong commented 3 years ago

Did you try

import JSONEditor from 'jsoneditor';

?