我正在使用Atom作为带有打字稿的AngularJs 2项目的开发环境。我在 atom 中添加了原子打字稿插件以支持打字稿。Atom 正在为每个 .ts 文件生成单独的.js文件。我想为所有.ts文件生成单个.js文件。因此,我在tsconfig.json的comilerOptions下添加了outFile设置。我的tsconfig.json如下。
{
"compilerOptions": {
"target": "ES5",
"module": "system",
"moduleResolution": "node",
"sourceMap": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outFile": "./js/Deployment/single.js"
},
"exclude": [
"node_modules"
]
}
它看起来不错,但是当我编译项目时,它仍然在指定位置生成空的单个.js文件。我不明白我在这里错过了什么。我已经安装了原子打字稿版本 8.2.0。
我的包.json如下。
{
"name": "Pro1",
"version": "1.0.0",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"start": "concurrent "npm run tsc:w" "npm run lite" "
},
"license": "ISC",
"dependencies": {
"angular2": "2.0.0-beta.0",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"systemjs": "0.19.6",
"zone.js": "0.5.10"
},
"devDependencies": {
"concurrently": "^1.0.0",
"lite-server": "^1.3.1",
"typescript": "^1.7.3"
}
}
它看起来不错,但是当我编译项目时,它仍然在指定位置生成空的单个.js文件
检查您的typescript
版本。更新至 1.8
`"typescript": "^1.7.3"`
更多 : https://github.com/Microsoft/TypeScript/wiki/What's-new-in-TypeScript#concatenate-amd-and-system-modules-with---outfile