155

我对 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。

4

8 回答 8

188

从 Typescript 1.5 开始,这也可以在tsconfig.json文件中设置:

"compilerOptions": {
    "outDir": "DIRECTORY"
    ...

原始答案

使用--outDirtsc 上的选项(在 IntelliJ 的文件观察器中配置)

从命令行文档

--outDir DIRECTORY Redirect output structure to the directory.

于 2014-06-27T14:40:12.943 回答
33

或者,添加"outDir": "build"到 tsconfig.json 文件

于 2016-04-13T13:11:09.197 回答
10

尽管这些答案是正确的,但您应该考虑是否真的只是想从 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 文件。

于 2017-04-18T12:29:26.130 回答
4

Intellij 用户,将 Typescript 编译到多个输出目录

对于 Intellij 用户,这可能很有用。这就是我如何使用内置的 Typescript 编译器让它工作的方式。

环境信息

  • Windows 7的
  • 使用 NPM版本 1.7.3的打字稿
  • 智能 14
  • ES6
  • 使用 RequireJS

示例目录结构

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 设置

  • 文件 -> 设置 -> 打字稿
  • 节点解释器:您的 NodeJS 安装路径
  • 编译器版本:通常位于C:\yourUserName\AppData\Roaming\npm\node_modules\typescript\lib
  • 命令行选项:-m amd -t ES6 -outDir E:\myapp\js
  • 仅检查编译主文件并将其指向您的入口文件。E:\myapp\ts\main.ts如果未选中此项,那么您的所有文件都将尝试输出到您的 outDir 路径。

在此处输入图像描述

于 2016-01-15T21:44:31.433 回答
4

我像这样设置 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"
  ]
}
于 2016-01-21T22:10:24.560 回答
3

如果您想在 js 中映射 app/scripts 文件夹的目录结构,我建议您对文件观察器使用以下设置:

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
于 2014-06-27T19:03:36.687 回答
1

我将 Atom 与 atom-typescript 扩展一起使用,我的 tsconfig.json 看起来像这样:

{
  "compilerOptions": {
    "outDir":"js"
  }
}
于 2016-10-07T09:49:40.893 回答
-1

关于 Grunt,目前为了在生产环境中保存您的 dev 文件夹项目结构,并且在文件编译后不会得到意外结果,请参考选项:

compilerOptions: { 
 rootDir: 'devFolder'
 // ...
}

请参阅官方 grunt-ts 文档中的rootDir选项。

我希望它会帮助某人,如果他们被卡住并在生产中得到一个奇怪的结果。

于 2018-12-04T16:46:42.620 回答