TypeScript 基础语法

TypeScript 安装

1
npm i typescript -g

TypeScript 基础语法

TypeScript 程序由以下几个部分组成:

  • 模块
  • 函数
  • 变量
  • 语句和表达式
  • 注释

第一个 typeScript 代码

hello.ts

1
2
const hello: string = "Hello World!";
console.log(hello);

如何编译

tsc hello.ts

编译参数

tsc 常用编译参数如下表所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--help 显示帮助信息

--module 载入扩展模块

--target 设置 ECMA 版本

--removeComments 删除文件的注释

--out 编译多个文件并合并到一个输出的文件

--sourcemap 生成一个 sourcemap (.map) 文件。 sourcemap 是一个存储源代码与编译代码对应位置映射的信息文件。

--module noImplicitAny 在表达式和声明上有隐含的 any 类型时报错

--watch 在监视模式下运行编译器。会监视输出文件,在它们改变时重新编译。

TypeScript 保留关键字

TypeScript 保留关键字如下表所示:

关键字
break as catch switch
case if throw else
var number string get
module type instanceof typeof
public private enum export
finally for while void
null super this new
in return true false
any extends static let
package implements interface function
do try yield const
continue

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!