Inside tsconfig.json there is an attribute called module: "". Its value can be commonjs, es6, ...
If in data-juggler the value is module: "commonjs", you can:
yarn test
yarn build
npx ts-node ./benchmark-test/create-dataset.ts
npx ts-node ./benchmark-test/main.ts
but if you run views, then you have this error:

So, change module: "commonjs" in module: "es6" then:
Inside
tsconfig.jsonthere is an attribute calledmodule: "". Its value can becommonjs,es6, ...If in
data-jugglerthe value ismodule: "commonjs", you can:yarn testyarn buildnpx ts-node ./benchmark-test/create-dataset.tsnpx ts-node ./benchmark-test/main.tsbut if you run
views, then you have this error:So, change
module: "commonjs"inmodule: "es6"then:yarn buildviews.