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
compilerOptions.lib in tsconfig.json is case insensitive. In fact, VSCode by default auto-completes possible names in mixed case:
compilerOptions.lib
On the other hand, compilerOptions.lib in dnt build options only accepts lowercase names:
error: Uncaught (in promise) Error: Could not find filename for lib: ESNext throw new Error(`Could not find filename for lib: ${name}`);
Same applies for typings.
dnt should accept compilterOptions in same format Typescript does.
The text was updated successfully, but these errors were encountered:
Are you using typescript? What version of dnt are you using?
dnt/lib/compiler.ts
Line 61 in bcc8744
Sorry, something went wrong.
Ah, I see. The screenshot is of tsconfig.json. I think aligning them with that would be good.
Whoa, that was quick. Thanks @dsherret!
Successfully merging a pull request may close this issue.
compilerOptions.lib
in tsconfig.json is case insensitive. In fact, VSCode by default auto-completes possible names in mixed case:On the other hand,
compilerOptions.lib
in dnt build options only accepts lowercase names:Same applies for typings.
dnt should accept compilterOptions in same format Typescript does.
The text was updated successfully, but these errors were encountered: