web-dev-qa-db-ja.com

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

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

66
VoY

プロジェクトルートにtsconfig.jsonという名前のファイルを作成し、次の行を含めます。

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

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

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

90
budhajeewa

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

23
dSebastien

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

tsc *.ts --watch
10
Wambua Makenzi

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

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 用にSublime Build Systemを構成する方法。

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

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

8
Simo Endre

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

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

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

tsc 0.9.1.1にはwatch機能がないようです。

次のような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ファイルを自動的に監視およびコンパイルする

3
Sean

今日、私はあなたと同じ問題のためにこの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"
    />

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

1
Tekool