我正在学习打字稿,并使用非常简单的代码并出现错误。我想声明一个全局变量,但是当我尝试使用ts-node编译它时,它给出了错误,但是使用tsc时,它可以正常工作
文件:index.ts
declare var myApp : any;
myApp = "test"
// tsc index.ts - WORKS FILE
// ts-node index.ts - ERROR
使用ts-node index.ts
myApp = "test"
^
ReferenceError: myApp is not defined