Coder Social home page Coder Social logo

Comments (7)

qwertie avatar qwertie commented on June 26, 2024

How are you importing it? import BTree from 'sorted-btree'; should work. But if not, try this:

import BTree_ from 'sorted-btree';
const BTree = (BTree_ as any).default as typeof BTree_;

Let me know how it goes.

from btree-typescript.

paolodina avatar paolodina commented on June 26, 2024

image

Though I was able to import with your code.

from btree-typescript.

mindreframer avatar mindreframer commented on June 26, 2024

I hit the same problem with bun.sh.

Here a repo with reproduction:

from btree-typescript.

qwertie avatar qwertie commented on June 26, 2024

Please try the code above and let me know how it goes.

from btree-typescript.

mindreframer avatar mindreframer commented on June 26, 2024

@qwertie Thanks for the response! This works:

import BTree_ from "sorted-btree";
const BTree = (BTree_ as any).default as typeof BTree_;

let tree = new BTree();

I have this issue with a 3rd party lib (https://github.com/blinkdb-js/blinkdb), would it be possible to make it work in the expected way? Is this workaround necessary to keep the ES5 compatibility?

And if there is no other way, maybe this should be documented in the Readme.

Cheers and have a great Sunday!
Roman

from btree-typescript.

mindreframer avatar mindreframer commented on June 26, 2024

The workaround is problematic in that sense, that it would be not compatible with npm or yarn anymore. That means if we consider a library for publishing, to be used either in Node.js or Bun.sh projects, this approach would not work.

from btree-typescript.

qwertie avatar qwertie commented on June 26, 2024

Unfortunately I don't understand the cause of the problem, and I am generally too busy to investigate, so it is unlikely that I will find time to figure out the problem. It appears that enabling esnext in TypeScript options is problematic? Maybe if BTree were recompiled in esnext mode, it would work properly, but we can't do that, because we need to maintain es5 compatibility.

from btree-typescript.

Related Issues (13)

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.