打字稿:tsconfig outFile 不工作
Typescript: tsconfig outFile not working
我正在使用 Atom 作为 AngularJs 2 带有打字稿的项目的开发环境。我在 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"
}
}
It looks fine but still when I compile project it generates empty single.js file at specified location
检查您的 typescript
版本。更新到 1.8
`"typescript": "^1.7.3"`
我正在使用 Atom 作为 AngularJs 2 带有打字稿的项目的开发环境。我在 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"
}
}
It looks fine but still when I compile project it generates empty single.js file at specified location
检查您的 typescript
版本。更新到 1.8
`"typescript": "^1.7.3"`