我的helloword.ts文件已成功编译为helloword.js文件,但是helloword.js文件中没有内容。
我遵循了该网站上提供的步骤: https://code.visualstudio.com/docs/typescript/typescript-tutorial
首先,我创建了一个名为helloworld.ts的文件
然后,我添加打字稿代码。
但是,在打开集成终端(Ctrl +`)并键入tsc helloworld.ts
之后,我有一个空白的helloword.js文件
我可以确认我已经安装了npm并输入脚本
我在helloword.ts文件中键入的代码:
let message : string = "Hello World";
console.log(message);
我在集成终端中键入的代码:
tsc helloworld.ts
我希望在helloworld.js文件中看到以下代码:
var message = "Hello World";
console.log(message);
但是我看到一个完全空白的文件。
我想知道我在哪里弄错了。