我使用Atom作为AngularJs 2项目的开发环境,使用typescript。我在atom中添加了atom-typescript插件来支持typescript。 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"
]
}
看起来很好但是当我编译项目时它会在指定的位置生成空的single.js文件。我不明白我在这里缺少什么。我安装了atom-typescript版本8.2.0。
我的package.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"
}
}
答案 0 :(得分:1)
看起来很好,但是当我编译项目时,它会在指定位置生成空的single.js文件
检查您的typescript
版本。更新到1.8
`"typescript": "^1.7.3"`