Currently, I am going through the Typescript tutorial found at https://code.visualstudio.com/docs/languages/typescript.
While attempting to run the build task and selecting "tsc: build", VSCode is encountering an issue:
Executing task: tsc -p c:\work\JavascriptTypescript\test-apr-2018\tsconfig.json <
error TS5058: The specified path does not exist: 'c:workJavascriptTypescripttest-apr-2018tsconfig.json'.
The terminal process terminated with exit code: 1
The error stems from how it's handling the full path of the tsconfig.json file by removing slashes. It's evident that this method will not lead to the correct file.
If I manually input tsc -p tsconfig.json
in the command line, everything works as expected.
This seems like a configuration hiccup within VSCode, but being new to this environment, I'm unsure of how to rectify it.