typescript
小白其实并不白
这个人不懒,留下了许多字
展开
-
typescript类型
// string let a: string; a = 'str' //number let b:number; b = 123; //boolean let c:boolean; c = true //字面量 let d: string | number d = 'str' d = 123 //any 表示的是任意类型,一个变量设置为any后相对于改变量关闭了ts的类型检测 let e: any; //声明变量如果不指定类型,则TS解析会自动判断变量的类型为any let f; f = 10;.原创 2021-02-21 00:23:24 · 195 阅读 · 0 评论 -
typescript 基础配置文件
tsconfig.json: { /* tsconfg.json是ts编译器的配置文件,ts编译器可以根据它的信息来对代码进行编译 "include" 用来指定哪些ts文件需要被编译 一个*表示任意文件 两个*表示任意目录 "exclude" 不需要被编译的文件目录 默认值 ["node_modules","bower_components","jspm_packages"] */ "include": [原创 2021-02-21 00:11:02 · 401 阅读 · 0 评论