Top "Tsc" questions

tsc is a compiler for converting TypeScript into plain JavaScript.

Declare dynamically added class properties in TypeScript

I want to assign properties to the instance of a class without knowing the property names, values and types of …

class typescript properties typescript-typings tsc
TypeScript compile and keep comments

I like to have my comments intact in the resulting javascript file, by default the compiler removes them. Is there …

typescript tsc
Is it possible to compile a single TypeScript file to an output path using the tsc command?

In an attempt to separate my .ts source files from the .js output, I'm trying to implement a formal file-watcher …

node.js typescript tsc
tsc - ignore errors at command line

I have this: $ tsc -m amd --outFile dist/out.js lib/index.ts lib/index.ts(87,48): error TS1005: ';' …

typescript typescript2.0 tsc
Using Gulp how to first compile Typescript then concatenate the result and uglify it?

I'm working on a project using Typescript currently I'm facing a problem compiling Typescript and then concatenate the result using …

javascript typescript gulp tsc gulp-typescript
How to include lib.es2015.core.d.ts in tsconfig.json?

I'm writing Angular 2 Universal app, so I don't want any DOM types. But I want to compile all files in …

typescript tsc typescript-typings
Programmatically compile typescript in C#?

I'm trying to write a function in C# that takes in a string containing typescript code and returns a string …

c# compilation typescript tsc
How to compile an Angular2 TypeScript application to a single file?

I realize that I can compile my application with tsc my_app.ts --target system and it will generate a …

typescript commonjs angular systemjs tsc
TypeScript, node.js development with Visual Studio 2012 express

How can I write, build and run a node.js app in Visual Studio? I install the TypeScript extension on …

visual-studio node.js typescript tsc
npm doesn't update tsc version

Typescript is updated using the following command: npm install typescript -g And latest version 2.4.2 is installed correctly and I can …

typescript npm visual-studio-code tsc