如何使用Angular Quickstart编译特定文件夹中的typescript文件

时间:2016-10-03 18:52:17

标签: angular typescript

我已经使用Angular Quickstart example作为我的角度2应用程序的开头。我目前正在尝试在单独的目录中编译文件,以避免混淆.ts.js文件的混乱,而且我没有使用所提议的工具来完成它。 / p>

我想知道是否有人在切换到常规gulp / grunt编译之前遇到了问题。

1 个答案:

答案 0 :(得分:2)

我有同样的问题。有人提出这个问题,请查看。 Link to Github issue

只需在tsconfig.json中指定目录(outDir),如下所示。



{
    "version": "1.7.3",
    "compilerOptions": {
        "target": "es5",
        "module": "commonjs",
        "declaration": false,
        "noImplicitAny": true,
        "suppressImplicitAnyIndexErrors": true,
        "removeComments": false,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "noEmitOnError": false,
        "preserveConstEnums": true,
        "inlineSources": false,
        "sourceMap": false,
        "outDir": "./dist",
        "rootDir": "./src",
        "project": "./src",
        "moduleResolution": "node",
        "listFiles": false
    },
    "exclude": [
        "node_modules",
        "jspm_packages",
        "typings/browser",
        "typings/browser.d.ts"
    ]
}