python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Get location where npm packages installed
I've hit an error when trying to build my typescript code. Did some checking and found this issue. Any idea where can I get source location for npm run tsc?
Edit: add result for npm list -g
➜ ~ npm ...
rushgsp
Votes: 0
Answers: 0
Return type in emitted .d.ts files is any instead of this
I have created mixins as described here. When I'm editing the source files, the types are correct. However, the emitted .d.ts files have any instead of (in this case) PreComp types:
export class Lotti...
Avoonix
Votes: 0
Answers: 1
The difference between "npm run tsc" vs spawn('tsc')
I want to have a script, which will compile .ts files in my multiple repos. I try to run compilation via spawnSync('tsc file.ts') but I end up with tsc is not recognized as internal/external command.
...
ponyhunt3r
Votes: 0
Answers: 1
tsconfig.json path pattern
Is there any way to include files by path pattern? For example, I am currently doing this in my scripts:
import '../../../../myresource/src/shared/my-interface'
However, I would like to simply use thi...
Radu
Votes: 0
Answers: 1