其他分享
首页 > 其他分享> > typeScript:认识typeScript及作用

typeScript:认识typeScript及作用

作者:互联网

认识typeScript

什么是TypeScript?

TypeScript能做什么?

为什么要用TypeScript?

什么时候用TypeScript?

什么是类型安全?

什么是类型系统?

类型错误

类型系统

静态类型语言

额外的一个好处

环境搭建

安装 TypeScript 编译器

# 查看当前 tsc 编译器版本
tsc -v

编写代码

// ./src/hello.ts 
let str: string = '小陈';

编译执行

tsc ./src/hello.ts

其他的编译选项

–outDir

tsc --outDir ./dist ./src/hello.ts

–target

tsc --outDir ./dist --target ES6 ./src/hello.ts

–watch

tsc --outDir ./dist --target ES6 --watch ./src/hello.ts

编译配置文件

{ 
	"compilerOptions": { 
		"outDir": "./dist", 
		"target": "ES2015", 
		"watch": true, 
	}, 
	// ** : 所有目录(包括子目录) 
	// * : 所有文件,也可以指定类型 *.ts 
	"include": ["./src/**/*"] 
}
tsc

指定加载的配置文件

tsc -p ./configs
tsc -p ./configs/ts.json

标签:TypeScript,认识,tsc,ts,编译,编译器,typeScript,类型,作用
来源: https://blog.csdn.net/weixin_44178305/article/details/122152546