安装
npm install -g typescript
查看版本
tsc -v
新建test.ts文件
const hello = (name) => {
return `hello ${name}`
}
hello('word')
编译为js
tsc test.ts
生成js文件
var hello = function (name) {
return "hello " + name;
};
hello('word');
npm install -g typescript
查看版本
tsc -v
新建test.ts文件
const hello = (name) => {
return `hello ${name}`
}
hello('word')
编译为js
tsc test.ts
生成js文件
var hello = function (name) {
return "hello " + name;
};
hello('word');