web-dev-qa-db-ja.com

TypeScript-コンパイル済みファイルを別のディレクトリに保存する方法

私はTypeScriptを初めて使用しますが、現在、プロジェクト構造全体を通していくつかの場所に.tsファイルがあります。

app/
 |-scripts/
    |-app.ts
    |
    |-classes/
    |  |-classA.ts
    |  |-classB.ts
    |  
    |-controllers/
    |  |-controllerA.ts
    |  |-controllerB.ts
    |  
    |-otherStuff/
       |-otherstuffA.ts

今、私のファイルがコンパイルされると、それらは.tsファイルが存在するのと同じディレクトリにコンパイルされます:

app/
 |-scripts/
    |-app.ts
    |-app.js
    |
    |-classes/
    |  |-classA.ts
    |  |-classB.ts
    |  |-classA.js
    |  |-classB.js
    |  
    |-controllers/
    |  |-controllerA.ts
    |  |-controllerB.ts
    |  |-controllerA.js
    |  |-controllerB.js
    |  
    |-otherStuff/
       |-otherstuffA.ts
       |-otherStuffA.js

.jsファイルが.tsファイルと同じディレクトリ構造を保持する方法は好きですが、VCSで.jsファイルを追跡したくないので、すべてのJavaScriptファイルを別のディレクトリツリー(.gitignoreに追加できる)、次のように:

app/
 |-scripts/
 |  |-app.ts
 |  |
 |  |-classes/
 |  |  |-classA.ts
 |  |  |-classB.ts
 |  |  
 |  |-controllers/
 |  |  |-controllerA.ts
 |  |  |-controllerB.ts
 |  |  
 |  |-otherStuff/
 |     |-otherstuffA.ts
 |
 |-js/
    |-app.js
    |
    |-classes/
    |  |-classA.js
    |  |-classB.js
    |
    |-controllers/
    |  |-controllerA.js
    |  |-controllerB.js
    |
    |-otherStuff/
       |-otherstuffA.js

TypeScriptコンパイラにこれを行うように指示する設定またはオプションはどこかにありますか?また、関連性があるかどうかはわかりませんが、WebStormを使用しています。

95

Tscで--outDirオプションを使用します(IntelliJのFile Watcher内で構成されます)

コマンドラインのドキュメントから

--outDir DIRECTORY Redirect output structure to the directory.

編集

TypeScript 1.5以降、これはtsconfig.jsonファイルでも設定できます。

"compilerOptions": {
    "outDir": "DIRECTORY"
    ...
109
Bruno Grieder

または、"outDir": "build"をtsconfig.jsonファイルに追加します

30
Qingshan

これらの答えは正しいのですが、実際にIDEから.jsファイルを非表示にするだけにするかどうかを検討する必要があります。

Visual Studio Codeで、File > Preferences > Settingsまたは.vscode\settings.jsonファイルに移動して、次のように入力します。

"files.exclude": {
    "**/.git": true,
    "**/.DS_Store": true,
    "**/*.js" : {
        "when": "$(basename).ts"
    },
    "**/*.js.map": {
        "when": "$(basename)"
    }
}

上記は、対応する.tsファイルが存在する.jsファイルを隠します。

4
Dave Clark

Package_jsonをこのように設定して、npm run startと入力すると、すべてがbuildに出力されるようにします。ソースファイルはsrcに保存されます。出力ファイルは--outDir buildで指定されます。

{
  "name": "myapp",
  "version": "0.0.1",
  "scripts": {
    "tsc": "tsc",
    "tsc:w": "tsc -w --outDir build",
    "lite": "lite-server",
    "start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
  },
  "license": "private",
  "dependencies": {
    "angular2": "2.0.0-beta.0",
    "systemjs": "0.19.6",
    "es6-promise": "^3.0.2",
    "es6-shim": "^0.33.3",
    "reflect-metadata": "0.1.2",
    "rxjs": "5.0.0-beta.0",
    "zone.js": "0.5.10"
  },
  "devDependencies": {
    "concurrently": "^1.0.0",
    "lite-server": "^1.3.1",
    "TypeScript": "^1.7.3"
  }
}

Tsconfig.jsonでビルドディレクトリを除外できますが、JSはそこにあるだけなので、おそらく必要ありません。

{
  "compilerOptions": {
    "target": "ES5",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
  },
  "exclude": [
    "node_modules",
    "build"
  ]
}
3
Josh

Jsでapp/scriptsフォルダーのディレクトリ構造をマップする場合は、File Watcherに次の設定を使用することをお勧めします。

Arguments: --sourcemap --outDir $ProjectFileDir$/js/$FileDirPathFromParent(scripts)$ $FileName$
Working Directory: $FileDir$
Output Paths To Refresh: $ProjectFileDir$/js/$FileDirPathFromParent(scripts)$/$FileNameWithoutExtension$.js:$ProjectFileDir$/js/$FileDirPathFromParent(scripts)$/$FileNameWithoutExtension$.js.map
3
lena

Intellijユーザーは、TypeScriptを複数の出力ディレクトリにコンパイルします

Intellijユーザーの場合、これは便利です。これが、組み込みのTypeScriptコンパイラを使用してこれを機能させる方法でした。

環境情報

ディレクトリ構造の例

BEFORE COMPILE
----------------------------------------
-> JS
   -> app
      -> config.js  //this is not generated
   -> libs
      -> jquery.js  //this is not generated
   -> plugins
-> TS
   -> app
      -> main.ts
   -> libs
      -> jquery.d.ts
   -> plugins
      -> somePlugin.ts

AFTER COMPILE
----------------------------------------
-> JS
   -> app
      -> config.js  //this is not generated
      -> main.js
   -> libs
      -> jquery.js  //this is not generated
   -> plugins
      somePlugin.ts
-> TS
   -> app
      -> main.ts
   -> libs
      -> jquery.d.ts    //this is where I kept my definition files
   -> plugins
      -> somePlugin.ts

Intellij Setup

  • ファイル->設定-> TypeScript
  • Node Interpreter:NodeJSインストールパス
  • コンパイラバージョン:通常はC:\yourUserName\AppData\Roaming\npm\node_modules\TypeScript\libにあります
  • コマンドラインオプション:-m AMD -t ES6 -outDir E:\myapp\js
  • メインファイルのみをコンパイルし、エントリファイルを指すようにします。 E:\myapp\ts\main.tsこれがチェックされていない場合、すべてのファイルはoutDirパスに出力しようとします。

enter image description here

2
Kris Hollenbeck

Atomをatom-TypeScript拡張で使用しているので、tsconfig.jsonは次のようになります。

{
  "compilerOptions": {
    "outDir":"js"
  }
}
1
Daveman