Questions tagged [outdir]

7 questions
111
votes
8 answers

typescript outDir setting in tsconfig.json not working

I can't seem to get the outDir flag working when used in package.json. Directory structure is pretty simple: tsconfig.json at the root level, together with a src/ directory and a single index.ts file plus other directories representing other…
aryzing
  • 4,982
  • 7
  • 39
  • 42
4
votes
2 answers

Setting the 'outDir' attribute in Visual Studio Code

I continue to get this error when I attempt to debug a C++ program: can't launch program 'c:\Users\'my username'\Desktop\C++\'; setting the 'outDir' attribute might help I have tried various combinations of syntax so that it would satisfy the…
Patrick18200
  • 41
  • 1
  • 3
1
vote
1 answer

Typescript generating output to the wrong outdir path

I have a number of projects with identical tsconfig.json files but one is acting strangely. I have "outDir": "./lib", The results (.js, .d.ts) from src should go into lib directory as in the other projects. The project is in…
1
vote
1 answer

Adding OutDir property to all solution projects

I want TFS to build my projects into separate folders in Binaries folder. I have found the solution: http://blog.stangroome.com/2012/02/03/override-the-tfs-team-build-outdir-propert (I have to use .Net 4.0). However, I have mane projects in the…
0
votes
1 answer

Compile on save in tsconfig.json works differently for new files than it does for existing files

So I've been experimenting around with Angular lately and its features. One of them is the CompileOnSave feature in the tsconfig.json with the following settings: "outDir": "./dist/out-tsc", "watch": true, This all works, however, I'm seeing…
0
votes
1 answer

MSBuild ignores OutDir and always forces rebuild

Our solution contains ~50 projects. They all import a custom .target file that sets the OutDir variable so that all projects build to a common Binaries folder. Problem is: MSBuild does not check the OutDir folder for the .dlls but keeps looking…
Sebastian Weber
  • 6,766
  • 2
  • 30
  • 49
-1
votes
1 answer

Not able to specify - MSbuild:OutDir as a variable

I am trying to set up a command line build (currently using TFS build & moving to Jenkins based build). MsBuild's OutDir parameter does not seem take %MainPath% argument correctly. set MainPath="C:\Users\jayapraa\Documents\Visual Studio…
jayanand
  • 47
  • 9