TypeScript 安装 // 安装 npm i -g typescript // 查看版本 tsc -v 第一个 TypeScript /** * 末尾分号可加可不加 */ var str: string = "hello typescript" console.log(str) 编译结果