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
node-html-markdown/package.json
Lines 47 to 49 in 4bf0b4d
But the build is emitting code like:
// dist/main.js const ignoredElements = this.options.ignore?.concat(config_1.defaultIgnoreElements) ?? config_1.defaultIgnoreElements;
Which uses both optional chaining and nullish coalescing; features added in Node 14.
The text was updated successfully, but these errors were encountered:
Good catch! Thanks for pointing this out. I'll try to address this this week.
Sorry, something went wrong.
fix(tsconfig): Set output target to es2017 to support Node v10+ (Fixes …
1d5cefb
…#7)
dd63205
Should be sorted now, @gusvargas. Thanks again.
No branches or pull requests
node-html-markdown/package.json
Lines 47 to 49 in 4bf0b4d
But the build is emitting code like:
Which uses both optional chaining and nullish coalescing; features added in Node 14.
The text was updated successfully, but these errors were encountered: