I'm generating d.ts files from ts files. However, I see no way to prevent the generation of the .js files while doing this.
The command i am using is:
tsc --declaration test.ts
This generated both a test.d.ts as a test.js. However I only want it to generate a test.d.ts file.
Are there any options to do so?