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
Im getting the same results as
tsc -d --emitDeclarationOnly --module System --resolveJsonModule false --outFile dist/index.d.ts
and
dts-generator --project . --out index.d.ts
The text was updated successfully, but these errors were encountered:
Yeah, I've been doing this like
#!/bin/bash mkdir -p out npx tsc ./src/index.ts --declaration --emitDeclarationOnly --out out/index.js --module amd && echo " declare module 'YOUR_PACKAGE_NAME' { import main = require('index'); export = main; } " >> out/index.d.ts
Sorry, something went wrong.
At lease, exclude option works differently.
exclude
No branches or pull requests
Im getting the same results as
tsc -d --emitDeclarationOnly --module System --resolveJsonModule false --outFile dist/index.d.ts
and
The text was updated successfully, but these errors were encountered: