PhoneGap项目未在Android phone和Ripple上运行(错误:EPERM,open…)

PhoneGap项目未在Android phone和Ripple上运行(错误:EPERM,open…),android,cordova,typescript,phonegap-plugins,Android,Cordova,Typescript,Phonegap Plugins,我在VisualStudio 2013中创建了一个新项目,当我在windows emulator和设备上运行它时,它工作正常,但当我在Ripple和Android手机上运行它时,它不会运行,并给我一个错误和一个警告 警告1 TypeScript编译器没有要编译的文件, 因此它将跳过编译。错误2 EPERM,打开 'C:\Users\rao.burugula.cordova\lib\npm\u cache\cordova android\3.6.4\package.tgz' 当我查找package

我在VisualStudio 2013中创建了一个新项目,当我在windows emulator和设备上运行它时,它工作正常,但当我在Ripple和Android手机上运行它时,它不会运行,并给我一个错误和一个警告

警告1 TypeScript编译器没有要编译的文件, 因此它将跳过编译。错误2 EPERM,打开 'C:\Users\rao.burugula.cordova\lib\npm\u cache\cordova android\3.6.4\package.tgz'

当我查找package.tgz时,它是一个zip文件,所以我将其解压缩并放在那里。但仍然是同一个问题

在VS2013中创建的其他PhoneGap项目工作正常,只有我创建的新项目才会出现此错误

你能建议如何解决这个问题吗

下面是我创建一个新的空白应用程序(ApacheCordova)时自动生成的代码


TestRestWebservices
您好,您的应用程序已准备就绪

更新: 我也试过用这个

但找不到任何typescript文件的“生成操作”。我查看了房产,但没有。找到它的路径?? 提前谢谢


Rao

可能是重复的,我尝试查看它,但在.js文件的属性选项卡中找不到“构建操作”。你能告诉我在哪里可以找到“构建操作”吗
<!DOCTYPE html>
<html>
<head>
   <meta charset="utf-8" />
   <title>TestRestWebservices</title>
   <!-- TestRestWebservices references -->
   <link href="css/index.css" rel="stylesheet" />
</head>
<body>
   <p>Hello, your application is ready!</p>
   <!-- Cordova reference, this is added to your app when it's built. -->
   <script src="cordova.js"></script>
   <script src="scripts/platformOverrides.js"></script>
   <script src="scripts/index.js"></script>
 </body>
 </html>