我有一个Angular 1应用程序我转换为Angular 1.5并希望开始将其转换为TypeScript。但是,它与旧版本共享app.js
,我不想用TypeScript版本覆盖它。
我有办法让app.js模块保持原样 - 只有tsc用于控制器和服务吗?
由于问题的性质 - 我真的没有代码示例。假设app的经典angular.module,和.controller以及其他的.factory。
答案 0 :(得分:1)
JavaScript is valid TypeScript, therefore you could change any .js
file to .ts
, compile it, and it would be unchanged. Typescript is a superset of JavaScript that adds features to JavaScript, it isn't its own thing (like CoffeeScript).