How to watch and compile all TypeScript sources?

JavascriptCompilationTypescript

Javascript Problem Overview


I'm trying to convert a pet project to TypeScript and don't seem to be able to use the tsc utility to watch and compile my files. The help says I should use the -w switch, but it looks like it can't watch and compile all *.ts files in the some directory recursively. This seems like something tsc should be able to handle. What are my options?

Javascript Solutions


Solution 1 - Javascript

Create a file named tsconfig.json in your project root and include following lines in it:

{
	"compilerOptions": {
		"emitDecoratorMetadata": true,
		"module": "commonjs",
		"target": "ES5",
		"outDir": "ts-built",
		"rootDir": "src"
	}
}

Please note that outDir should be the path of the directory to receive compiled JS files, and rootDir should be the path of the directory containing your source (.ts) files.

Open a terminal and run tsc -w, it'll compile any .ts file in src directory into .js and store them in ts-built directory.

Solution 2 - Javascript

TypeScript 1.5 beta has introduced support for a configuration file called tsconfig.json. In that file you can configure the compiler, define code formatting rules and more importantly for you, provide it with information about the TS files in your project.

Once correctly configured, you can simply run the tsc command and have it compile all the TypeScript code in your project.

If you want to have it watch the files for changes then you can simply add --watch to the tsc command.

Here's an example tsconfig.json file

{
"compilerOptions": {
	"target": "es5",
	"module": "commonjs",
	"declaration": false,
	"noImplicitAny": false,
	"removeComments": true,
	"noLib": false
},
"include": [
    "**/*"
],
"exclude": [
    "node_modules",
    "**/*.spec.ts"
]}

In the example above, I include all .ts files in my project (recursively). Note that you can also exclude files using an "exclude" property with an array.

For more information, refer to the documentation: http://www.typescriptlang.org/docs/handbook/tsconfig-json.html

Solution 3 - Javascript

you can watch all files like this

tsc *.ts --watch

Solution 4 - Javascript

The other answers may have been useful years ago, but they are now out of date.

Given that a project has a tsconfig file, run this command...

tsc --watch

... to watch for changed files and compile as needed. The documentation explains:

> Run the compiler in watch mode. Watch input files and trigger recompilation on changes. The implementation of watching files and directories can be configured using environment variable. See configuring watch for more details.

To answer the original question, recursive directory watching is possible even on platforms that don't have native support, as explained by the Configuring Watch docs:

> The watching of directory on platforms that don’t support recursive directory watching natively in node, is supported through recursively creating directory watcher for the child directories using different options selected by TSC_WATCHDIRECTORY

Solution 5 - Javascript

Technically speaking you have a few options here:

If you are using an IDE like Sublime Text and integrated MSN plugin for Typescript: http://blogs.msdn.com/b/interoperability/archive/2012/10/01/sublime-text-vi-emacs-typescript-enabled.aspx you can create a build system which compile the .ts source to .js automatically. Here is the explanation how you can do it: https://stackoverflow.com/questions/12779631/how-to-configure-a-sublime-build-system-for-typescript/12781051#12781051.

You can define even to compile the source code to destination .js file on file save. There is a sublime package hosted on github: https://github.com/alexnj/SublimeOnSaveBuild which make this happen, only you need to include the ts extension in the SublimeOnSaveBuild.sublime-settings file.

Another possibility would be to compile each file in the command line. You can compile even multiple files at once by separating them with spaces like so: tsc foo.ts bar.ts. Check this thread: https://stackoverflow.com/questions/12699781/how-can-i-pass-multiple-source-files-to-the-typescript-compiler, but i think the first option is more handy.

Solution 6 - Javascript

The tsc compiler will only watch those files that you pass on the command line. It will not watch files that are included using a /// <sourcefile> reference. If your working with the bash, you could use find to recursively find all *.ts files and compile them:

find . -name "*.ts" | xargs tsc -w

Solution 7 - Javascript

Look into using grunt to automate this, there are numerous tutorials around, but here's a quick start.

For a folder structure like:

blah/
blah/one.ts
blah/two.ts
blah/example/
blah/example/example.ts
blah/example/package.json
blah/example/Gruntfile.js
blah/example/index.html

You can watch and work with typescript easily from the example folder with:

npm install
grunt

With package.json:

{
  "name": "PROJECT",
  "version": "0.0.1",
  "author": "",
  "description": "",
  "homepage": "",
  "private": true,
  "devDependencies": {
    "typescript": "~0.9.5",
    "connect": "~2.12.0",
    "grunt-ts": "~1.6.4",
    "grunt-contrib-watch": "~0.5.3",
    "grunt-contrib-connect": "~0.6.0",
    "grunt-open": "~0.2.3"
  }
}

And a grunt file:

module.exports = function (grunt) {

  // Import dependencies
  grunt.loadNpmTasks('grunt-contrib-watch');
  grunt.loadNpmTasks('grunt-contrib-connect');
  grunt.loadNpmTasks('grunt-open');
  grunt.loadNpmTasks('grunt-ts');

  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    connect: {
      server: {  // <--- Run a local server on :8089
        options: {
          port: 8089,
          base: './'
        }
      }
    },
    ts: {
      lib: { // <-- compile all the files in ../ to PROJECT.js
        src: ['../*.ts'],
        out: 'PROJECT.js',
        options: {
          target: 'es3',
          sourceMaps: false,
          declaration: true,
          removeComments: false
        }
      },
      example: {  // <--- compile all the files in . to example.js
        src: ['*.ts'],
        out: 'example.js',
        options: {
          target: 'es3',
          sourceMaps: false,
          declaration: false,
          removeComments: false
        }
      }
    },
    watch: { 
      lib: { // <-- Watch for changes on the library and rebuild both
        files: '../*.ts',
        tasks: ['ts:lib', 'ts:example']
      },
      example: { // <--- Watch for change on example and rebuild
        files: ['*.ts', '!*.d.ts'],
        tasks: ['ts:example']
      }
    },
    open: { // <--- Launch index.html in browser when you run grunt
      dev: {
        path: 'http://localhost:8089/index.html'
      }
    }
  });

  // Register the default tasks to run when you run grunt
  grunt.registerTask('default', ['ts', 'connect', 'open', 'watch']);
}

Solution 8 - Javascript

tsc 0.9.1.1 does not seem to have a watch feature.

You could use a PowerShell script like the one:

#watch a directory, for changes to TypeScript files.  
#  
#when a file changes, then re-compile it.  
$watcher = New-Object System.IO.FileSystemWatcher  
$watcher.Path = "V:\src\MyProject"  
$watcher.IncludeSubdirectories = $true  
$watcher.EnableRaisingEvents = $true  
$changed = Register-ObjectEvent $watcher "Changed" -Action {  
  if ($($eventArgs.FullPath).EndsWith(".ts"))  
  {  
    $command = '"c:\Program Files (x86)\Microsoft SDKs\TypeScript\tsc.exe" "$($eventArgs.FullPath)"'  
    write-host '>>> Recompiling file ' $($eventArgs.FullPath)  
    iex "& $command"  
  }  
}  
write-host 'changed.Id:' $changed.Id  
#to stop the watcher, then close the PowerShell window, OR run this command:  
# Unregister-Event < change Id >  

Ref: Automatically watch and compile TypeScript files.

Solution 9 - Javascript

Today I designed this Ant MacroDef for the same problem as yours :

	<!--
	Recursively read a source directory for TypeScript files, generate a compile list in the
	format needed by the TypeScript compiler adding every parameters it take.
-->
<macrodef name="TypeScriptCompileDir">

	<!-- required attribute -->
	<attribute name="src" />

	<!-- optional attributes -->
	<attribute name="out" default="" />
	<attribute name="module" default="" />
	<attribute name="comments" default="" />
	<attribute name="declarations" default="" />
	<attribute name="nolib" default="" />
	<attribute name="target" default="" />

	<sequential>

		<!-- local properties -->
		<local name="out.arg"/>
		<local name="module.arg"/>
		<local name="comments.arg"/>
		<local name="declarations.arg"/>
		<local name="nolib.arg"/>
		<local name="target.arg"/>
		<local name="typescript.file.list"/>
		<local name="tsc.compile.file"/>

		<property name="tsc.compile.file" value="@{src}compile.list" />

		<!-- Optional arguments are not written to compile file when attributes not set -->
		<condition property="out.arg" value="" else='--out "@{out}"'>
			<equals arg1="@{out}" arg2="" />
		</condition>

		<condition property="module.arg" value="" else="--module @{module}">
			<equals arg1="@{module}" arg2="" />
		</condition>

		<condition property="comments.arg" value="" else="--comments">
			<equals arg1="@{comments}" arg2="" />
		</condition>

		<condition property="declarations.arg" value="" else="--declarations">
			<equals arg1="@{declarations}" arg2="" />
		</condition>

		<condition property="nolib.arg" value="" else="--nolib">
			<equals arg1="@{nolib}" arg2="" />
		</condition>

		<!-- Could have been defaulted to ES3 but let the compiler uses its own default is quite better -->
		<condition property="target.arg" value="" else="--target @{target}">
			<equals arg1="@{target}" arg2="" />
		</condition>

		<!-- Recursively read TypeScript source directory and generate a compile list -->
		<pathconvert property="typescript.file.list" dirsep="\" pathsep="${line.separator}">

			<fileset dir="@{src}">
				<include name="**/*.ts" />
			</fileset>

			<!-- In case regexp doesn't work on your computer, comment <mapper /> and uncomment <regexpmapper /> -->
			<mapper type="regexp" from="^(.*)$" to='"\1"' />
			<!--regexpmapper from="^(.*)$" to='"\1"' /-->

		</pathconvert>


		<!-- Write to the file -->
		<echo message="Writing tsc command line arguments to : ${tsc.compile.file}" />
		<echo file="${tsc.compile.file}" message="${typescript.file.list}${line.separator}${out.arg}${line.separator}${module.arg}${line.separator}${comments.arg}${line.separator}${declarations.arg}${line.separator}${nolib.arg}${line.separator}${target.arg}" append="false" />

		<!-- Compile using the generated compile file -->
		<echo message="Calling ${typescript.compiler.path} with ${tsc.compile.file}" />
		<exec dir="@{src}" executable="${typescript.compiler.path}">
			<arg value="@${tsc.compile.file}"/>
		</exec>

		<!-- Finally delete the compile file -->
		<echo message="${tsc.compile.file} deleted" />
		<delete file="${tsc.compile.file}" />

	</sequential>

</macrodef>

Use it in your build file with :

	<!-- Compile a single JavaScript file in the bin dir for release -->
	<TypeScriptCompileDir
		src="${src-js.dir}"
		out="${release-file-path}"
		module="amd"
	/>

It is used in the project PureMVC for TypeScript I'm working on at the time using Webstorm.

Solution 10 - Javascript

EDIT: Note, this is if you have multiple tsconfig.json files in your typescript source. For my project we have each tsconfig.json file compile to a differently-named .js file. This makes watching every typescript file really easy.

I wrote a sweet bash script that finds all of your tsconfig.json files and runs them in the background, and then if you CTRL+C the terminal it will close all the running typescript watch commands.

This is tested on MacOS, but should work anywhere that BASH 3.2.57 is supported. Future versions may have changed some things, so be careful!

#!/bin/bash
# run "chmod +x typescript-search-and-compile.sh" in the directory of this file to ENABLE execution of this script
# then in terminal run "path/to/this/file/typescript-search-and-compile.sh" to execute this script
# (or "./typescript-search-and-compile.sh" if your terminal is in the folder the script is in)

# !!! CHANGE ME !!!    
# location of your scripts root folder
# make sure that you do not add a trailing "/" at the end!!
# also, no spaces! If you have a space in the filepath, then
# you have to follow this link: https://stackoverflow.com/a/16703720/9800782
sr=~/path/to/scripts/root/folder
# !!! CHANGE ME !!!

# find all typescript config files
scripts=$(find $sr -name "tsconfig.json")

for s in $scripts
do
    # strip off the word "tsconfig.json"
    cd ${s%/*} # */ # this function gets incorrectly parsed by style linters on web
    # run the typescript watch in the background
    tsc -w &
    # get the pid of the last executed background function
    pids+=$!
    # save it to an array
    pids+=" "
done

# end all processes we spawned when you close this process
wait $pids

Helpful resources:

Solution 11 - Javascript

In linux I use:

tsc -w $(find . | grep .ts)

This will watch every typescript file under the current directory.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionVoYView Question on Stackoverflow
Solution 1 - JavascriptbudhajeewaView Answer on Stackoverflow
Solution 2 - JavascriptdSebastienView Answer on Stackoverflow
Solution 3 - JavascriptOfficialzessuView Answer on Stackoverflow
Solution 4 - JavascriptDavid J.View Answer on Stackoverflow
Solution 5 - JavascriptEndre SimoView Answer on Stackoverflow
Solution 6 - JavascriptValentinView Answer on Stackoverflow
Solution 7 - JavascriptDougView Answer on Stackoverflow
Solution 8 - JavascriptSeanView Answer on Stackoverflow
Solution 9 - JavascriptTekoolView Answer on Stackoverflow
Solution 10 - JavascriptMatt WyndhamView Answer on Stackoverflow
Solution 11 - JavascriptpablozoaniView Answer on Stackoverflow