You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download your OS's version of the program from Releases.
TypeScript_to_JavaScript.exe: Windows
TypeScript_to_JavaScript: Linux
Add a scripts.ts file in the same directory, or remember to set the -file command-line-argument if it is outside the program's directory.
Run the program with the following potential flags:
-file string
Path to the TypeScript file. (default "scripts.ts")
-minify bool
Minify the JavaScript output.
-stream float64
File streaming minimum threshold in megabytes. (default 2.5)
Sample TypeScript content
// Define an interface for a PersoninterfacePerson{firstName: string;lastName: string;age: number;greet(): string;}// Create a class that implements the Person interfaceclassStudentimplementsPerson{firstName: string;lastName: string;age: number;studentId: number;constructor(firstName: string,lastName: string,age: number,studentId: number){this.firstName=firstName;this.lastName=lastName;this.age=age;this.studentId=studentId;}// Implement the greet methodgreet(): string{return`Hello, my name is ${this.firstName}${this.lastName} and I am ${this.age} years old.`;}// Additional method to get the student IDgetStudentId(): number{returnthis.studentId;}}// Create an instance of the Student classconststudent=newStudent("John","Doe",20,12345);// Call the greet methodconsole.log(student.greet());// Call the getStudentId methodconsole.log(`My student ID is ${student.getStudentId()}.`);