すべてのTypeScriptソースを監視およびコンパイルする方法は?


83

ペットプロジェクトをTypeScriptに変換しようとしていますが、tscユーティリティを使用してファイルを監視およびコンパイルできないようです。ヘルプには、-wスイッチを使用する必要があると書か*.tsれていますが、一部のディレクトリ内のすべてのファイルを再帰的に監視およびコンパイルできないようです。これは何かtscが処理できるはずのようです。私のオプションは何ですか?

回答:


120

tsconfig.jsonプロジェクトルートで名前を付けたファイルを作成し、その中に次の行を含めます。

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

outDirは、コンパイルされたJSファイルを受信するディレクトリrootDirのパスであり、ソース(.ts)ファイルを含むディレクトリのパスである必要があることに注意しください

ターミナルを開いて実行すると、ディレクトリ内のファイルtsc -wがコンパイルされ.tssrcディレクトリに.js保存されts-builtます。


1
その解決策をありがとう。1つの小さな更新:コメントを削除するまでtscエラーが発生しerror TS6050: Unable to open file 'tsconfig.json'.ました
Garrett McCullough 2015年

@gwmccull:ああ、私はここにそれらを追加しただけなので、読者は何が何であるかを知ることができます。答えを更新します。
budhajeewa 2015年

コメントは役に立ちました。なぜそれが機能しないのかを理解するのに1分かかりました。新しいノートも機能します。答えてくれてありがとう!
Garrett McCullough 2015年

7
誰かがそれを探している場合に備えて。このリンクからの注意:github.com/Microsoft/TypeScript/wiki/tsconfig.json " tsconfig.jsonに" files "プロパティが存在しない場合、コンパイラーはデフォルトですべてのTypeScript(*。tsまたは* .tsx)ファイルを含みます。含まれているディレクトリとサブディレクトリにあります。「files」プロパティが存在する場合、指定されたファイルのみが含まれます。」
キャリーウォーカー2016

1
で単一のソースディレクトリを設定する代わりにcompilerOptions.rootDir、tsconfigのincludeプロパティで複数のソースディレクトリを指定できます。– { "compilerOptions": { ...myOptions }, "include": [ "src", "otherSrc" ] }
JP Lew

27

TypeScript 1.5ベータ版では、tsconfig.jsonという構成ファイルのサポートが導入されました。そのファイルでは、コンパイラーを構成し、コードのフォーマット規則を定義し、さらに重要なことに、プロジェクト内のTSファイルに関する情報をコンパイラーに提供できます。

正しく構成されたら、tscコマンドを実行して、プロジェクト内のすべてのTypeScriptコードをコンパイルすることができます。

ファイルの変更を監視する場合は、tscコマンドに--watchを追加するだけです。

これがtsconfig.jsonファイルの例です

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

上記の例では、すべての.tsファイルをプロジェクトに(再帰的に)含めています。配列で「exclude」プロパティを使用してファイルを除外することもできることに注意してください。

詳細については、ドキュメントを参照してくださいhttp//www.typescriptlang.org/docs/handbook/tsconfig-json.html


2
glob構文は本当に実装されていますか?スキーマに含まれていません
Serguzest 2015

2
実は違う; それ以来、グロブパターンはまだ議論中であることを発見しました。filesGlobは、Atomエディターでのみサポートされています。今のところ、「files」プロパティと「exclude」プロパティを指定できます。
dSebastien 2015

2
注目すべき問題は次のとおりです。github.com
Microsoft

17

あなたはこのようなすべてのファイルを見ることができます

tsc *.ts --watch

4
このソリューションをノードに適用すると、「ファイル '* .ts'が見つかりません」というメッセージが表示されます。これについて何か考えはありますか?
サミ

8

技術的に言えば、ここにはいくつかのオプションがあります。

Sublime TextのようなIDEとTypescript用の統合MSNプラグインを使用している場合:http//blogs.msdn.com/b/interoperability/archive/2012/10/01/sublime-text-vi-emacs-typescript-enabled。 aspxは、.tsソースを.js自動的にコンパイルするビルドシステムを作成できます。これがあなたがそれをすることができる方法の説明です:TypeScriptのために崇高なビルドシステムを構成する方法

.jsファイル保存時にソースコードを宛先ファイルにコンパイルするように定義することもできます。githubでホストされている崇高なパッケージがあります:https//github.com/alexnj/SublimeOnSaveBuildこれを実現tsSublimeOnSaveBuild.sublime-settingsます。ファイルに拡張子を含める必要があるだけです。

別の可能性は、コマンドラインで各ファイルをコンパイルすることです。次のようにスペースで区切ることにより、一度に複数のファイルをコンパイルすることもできますtsc foo.ts bar.ts。このスレッドを確認してください:TypeScriptコンパイラに複数のソースファイルを渡すにはどうすればよいですか?、しかし私は最初のオプションがより便利だと思います。


6

tscコンパイラは、コマンドラインで渡したファイルのみを監視します。参照を使用して含まれているファイル監視されません/// <sourcefile>。bashを使用している場合は、findを使用してすべての*.tsファイルを再帰的に検索し、それらをコンパイルできます。

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

6

これを自動化するためにgruntを使用することを検討してください。周りには多数のチュートリアルがありますが、ここから簡単に始めます。

次のようなフォルダ構造の場合:

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

次の例のフォルダから、typescriptを簡単に監視および操作できます。

npm install
grunt

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"
  }
}

そしてうなり声ファイル:

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']);
}

3

tsc0.9.1.1には監視機能がないようです。

次のようなPowerShellスクリプトを使用できます。

#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 >  

参照: TypeScriptファイルを自動的に監視およびコンパイルします


1

今日、私はあなたと同じ問題のためにこのAnt MacroDefを設計しました:

    <!--
    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>

ビルドファイルで次のように使用します。

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

これは、Webstormを使用して当時取り組んでいるTypeScript用のPureMVCプロジェクトで使用されています。


アリのマイクロスクリプト?あなたは....このソリューションの一部としてそれを使用する方法を説明するために答えを拡大することをお勧めします
random_user_name

簡単な例を挙げてブログに投稿し、ここにリンクしてみます。ここで待つことができない場合は、私が使用しているプロジェクトgithub.com/tekool/puremvc-typescript-singlecoreで、完全なAntビルドファイルは次のとおり
Tekool 2012年

0

編集:これは、typescriptソースに複数のtsconfig.jsonファイルがある場合であることに注意してください。私のプロジェクトでは、各tsconfig.jsonファイルを異なる名前の.jsファイルにコンパイルします。これにより、すべてのtypescriptファイルを非常に簡単に監視できます。

すべてのtsconfig.jsonファイルを見つけてバックグラウンドで実行する甘いbashスクリプトを作成しました。その後、ターミナルをCTRL + Cすると、実行中のすべてのtypescriptウォッチコマンドが閉じます。

これはMacOSでテストされていますが、BASH3.2.57がサポートされている場所であればどこでも機能するはずです。将来のバージョンではいくつかの変更が行われる可能性があるため、注意してください。

#!/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

役立つリソース:


Bashのファイルパス文字列にスペースを入れる方法:stackoverflow.com/a/16703720/9800782
Matt Wyndham
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.