TypeScript Version:
1.8.9
Hi i am using outDir:"dist" option for my compiler.
Now my src is like this:
I handle the .d.ts myself because i want to force the definitions
Now the issue is that in the outDir i end up with a test.d.ts generated based on the test.ts and not the one i implicitely create. Which is also the one i get auto complete from.
I think that if the compiler see an alreading existing definition file, it should copy it and not even generate one.
Don't you think?
TypeScript Version:
1.8.9
Hi i am using
outDir:"dist"option for my compiler.Now my
srcis like this:I handle the
.d.tsmyself because i want to force the definitionsNow the issue is that in the outDir i end up with a
test.d.tsgenerated based on thetest.tsand not the one i implicitely create. Which is also the one i get auto complete from.I think that if the compiler see an alreading existing definition file, it should copy it and not even generate one.
Don't you think?