第一章、typescript高级
摘要:####一、typescript语法精讲(环境) #####1、ts初体验 IDE语法检测原理 IDE内部会生成代码的AST树,从而分析语法的错误 安装和编译ts # 安装 npm i -g typescript # 编译 tsc index.ts ts编译的作用域 * 默认情况下所有ts文件都是在
阅读全文
typescript入门
摘要:####typescript入门 #####1、环境 * 需要nodejs环境 * 安装:npm i -g typescript * 查看版本:tsc -V * 手动编译:tsc helloworld.ts #####2、基本数据类型 |名称|类型| | | | |布尔值|boolean| |数字|
阅读全文