ペットプロジェクトをTypeScriptに変換しようとしていますが、tsc
ユーティリティを使用してファイルを監視およびコンパイルできないようです。ヘルプには-w
スイッチを使用する必要があると書かれていますが、一部のディレクトリ内のすべての*.ts
ファイルを再帰的に監視およびコンパイルできないようです。これは何かtsc
が処理できるはずです。私のオプションは何ですか?
プロジェクトルートに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
ディレクトリに保存されます。
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
このようなすべてのファイルを見ることができます
tsc *.ts --watch
技術的に言えば、ここにはいくつかのオプションがあります。
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コンパイラに渡すにはどうすればよいですか? が、最初のオプションがより便利だと思います。
Tscコンパイラは、コマンドラインで渡すファイルのみを監視します。 not/// <sourcefile>
参照を使用して含まれているファイルを監視します。 bashを使用している場合、findを使用してすべての*.ts
ファイルを再帰的に検索し、コンパイルできます。
find . -name "*.ts" | xargs tsc -w
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']);
}
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 >
今日、私はあなたと同じ問題のためにこの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を使用してその時に取り組んでいます。