We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
commonjs
es6
Inside tsconfig.json there is an attribute called module: "". Its value can be commonjs, es6, ...
tsconfig.json
module: ""
If in data-juggler the value is module: "commonjs", you can:
data-juggler
module: "commonjs"
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:
views
So, change module: "commonjs" in module: "es6" then:
module: "es6"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Inside
tsconfig.json
there is an attribute calledmodule: ""
. Its value can becommonjs
,es6
, ...If in
data-juggler
the value ismodule: "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"
inmodule: "es6"
then:yarn build
views
.The text was updated successfully, but these errors were encountered: