旧版本的打字稿有很多不同之处,比如使用' bool'而不是'布尔'。
我尝试让php-typescript编译器在Visual Studio 2015中运行,但是,它显示超过2000个错误,主要是因为旧版本的代码。
有没有办法将旧版本的打字稿代码转换为最新的?
非常感谢!
答案 0 :(得分:0)
没有自动化的方法。
但是,由于TypeScript 1.8没有必要这样做。它添加了 allowJs 标志,允许Javascript代码通过编译器无损地传递。
您可以在 tsconfig.json :
中对其进行如下配置{
"compilerOptions": {
"module": "system",
"target": "es5",
"noImplicitAny": false,
"sourceMap": false,
"experimentalDecorators": true,
"allowJs": true,
"outDir": "dist"
},
"exclude": [
"node_modules"
]
}