Specify TypeScript output file name format
Asked Answered
L

2

22

I need to change the TypeScript generated js file name to something else. How can I do that

For example I have MyCompany.ClassA.ts

It will generate MyCompany.ClassA.js by default

But I want MyCompany.ClassA.generated.js

I took a look at .tsConfig file but I couldn't find anything useful there.


ps. I am using VisualStudio2013 for Typescript and generating the js files

Ligniform answered 8/2, 2016 at 19:35 Comment(0)
B
8

To compile a single TypeScript file to .js with a custom name, use --outFile:

tsc MyCompany.ClassA.ts --outFile MyCompany.ClassA.generated.js

Compiling multiple files to the .generated.js pattern would require a bit more work. You could compile one at a time as in the tsc example above.

tsc A.ts --outFile A.generated.js
tsc B.ts --outFile B.generated.js

Or you could use --outDir to collect the compiled files under standard names, and then rename them with your own script.

tsc --outDir ./generated
# run script to rename ./generated/*.js to *.generated.js 

Note that --outFile and --outDir replace --out, which is deprecated:

https://github.com/Microsoft/TypeScript/wiki/Compiler-Options

Brueghel answered 11/2, 2016 at 8:51 Comment(0)
S
3

The other answer here is good and comprehensive, but just to address this:

I took a look at the .tsconfig file but I couldn't find anything useful there

You can also set the outFile config in your .tsconfig.json under compilerOptions

{
  "compilerOptions": {
    "outFile": "./some/path/MyCompany.ClassA.generated.js",
    ...
  }
}   

See this example in the documentation

Stithy answered 3/8, 2019 at 10:9 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.