工程篇

# 工程篇

[TOC]

# 一、模块系统

# 1.1 ES6

# 1.1.1 导出

// a.ts
// 单独导出
export let a = 1

// 批量导出
let b = 2
let c = 3
export { b, c }

// 导出接口
export interface P {
    x: number;
    y: number;
}

// 导出函数
export function f() {}

// 导出时起别名
function g() {}
export { g as G }

// 默认导出,无需函数名
export default function () {
    console.log("I'm default")
}

// 引入外部模块,重新导出
export { str as hello } from './b'

// 导出常量
export const str = 'Hello'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

# 1.1.2 导入

import { a, b, c } from './a'; // 批量导入
import { P } from './a';       // 导入接口
import { f as F } from './a';  // 导入时起别名
import * as All from './a';    // 导入模块中的所有成员,绑定在 All 上
import myFunction from './a';  // 不加{},导入默认
1
2
3
4
5

# 1.2 CommonJS

# 1.2.1 导出

// a.node.js
let a = {
    x: 1,
    y: 2
}

// 整体导出
module.exports = a
1
2
3
4
5
6
7
8
// b.node.js
// exports === module.exports
// 导出多个变量
// module.exports = {}
exports.c = 3
exports.d = 4
1
2
3
4
5
6

# 1.2.2 导入

let c1 = require('./a.node')
let c2 = require('./b.node')

console.log(c1)	// { x: 1, y: 2 }
console.log(c2)	// { c: 3, d: 4 }
1
2
3
4
5

# 1.2.3 Node环境运行ts文件

$ npm i ts-node -g
$ ts-node node.ts
1
2

# 1.3 TypeScript

  • 两种模块不要混用
  • 混用得兼容性写法
    • 在es6中使用-export = x
    • 在CommonJS 中使用-import x = require()

# 二、命名空间

不要与模块混用。

# 2.1 实现原理

  • 立即执行函数构成的闭包。

# 2.2 要点

# 2.2.1 局部变量对外不可见

# 2.2.2 导出成员对外可见

# 2.2.3 多个文件可共享同名命名空间

# 2.2.4 依赖关系/// <reference path="..." />

# 三、声明合并

# 四、tsconfig.JSON(主要配置)

参考教程:了不起的tsconfig.json指南 (opens new window)(非常详细,强烈推荐!)

初始化tsconfig.json

  1. 根目录手动创建。

  2. tsc --init初始化。

# 4.1 文件选项

# 4.1.1 files

  • 需要编译的单个文件列表。

# 4.1.2 include

  • 需要编译的文件或目录。

# 4.1.3 exclude

  • 需要排除的文件或目录。
  • 默认排除node_modules文件夹下文件。

# 4.1.4 extends

  • 配置文件继承。

# 4.2 编译选项compilerOptions

参考链接:https://www.tslang.cn/docs/handbook/compiler-options.html

{
  // ...
  "compilerOptions": {
    "incremental": true, // TS编译器在第一次编译之后会生成一个存储编译信息的文件,第二次编译会在第一次的基础上进行增量编译,可以提高编译的速度
    "tsBuildInfoFile": "./buildFile", // 增量编译文件的存储位置
    "diagnostics": true, // 打印诊断信息 
    "target": "ES5", // 目标语言的版本
    "module": "CommonJS", // 生成代码的模板标准
    "outFile": "./app.js", // 将多个相互依赖的文件生成一个文件,可以用在AMD模块中,即开启时应设置"module": "AMD",
    "lib": ["DOM", "ES2015", "ScriptHost", "ES2019.Array"], // TS需要引用的库,即声明文件,es5 默认引用dom、es5、scripthost,如需要使用es的高级版本特性,通常都需要配置,如es8的数组新特性需要引入"ES2019.Array",
    "allowJS": true, // 允许编译器编译JS,JSX文件
    "checkJs": true, // 允许在JS文件中报错,通常与allowJS一起使用
    "outDir": "./dist", // 指定输出目录
    "rootDir": "./", // 指定输出文件目录(用于输出),用于控制输出目录结构
    "declaration": true, // 生成声明文件,开启后会自动生成声明文件
    "declarationDir": "./file", // 指定生成声明文件存放目录
    "emitDeclarationOnly": true, // 只生成声明文件,而不会生成js文件
    "sourceMap": true, // 生成目标文件的sourceMap文件
    "inlineSourceMap": true, // 生成目标文件的inline SourceMap,inline SourceMap会包含在生成的js文件中
    "declarationMap": true, // 为声明文件生成sourceMap
    "typeRoots": [], // 声明文件目录,默认时node_modules/@types
    "types": [], // 加载的声明文件包
    "removeComments":true, // 删除注释 
    "noEmit": true, // 不输出文件,即编译后不会生成任何js文件
    "noEmitOnError": true, // 发送错误时不输出任何文件
    "noEmitHelpers": true, // 不生成helper函数,减小体积,需要额外安装,常配合importHelpers一起使用
    "importHelpers": true, // 通过tslib引入helper函数,文件必须是模块
    "downlevelIteration": true, // 降级遍历器实现,如果目标源是es3/5,那么遍历器会有降级的实现
    "strict": true, // 开启所有严格的类型检查
    "alwaysStrict": true, // 在代码中注入'use strict'
    "noImplicitAny": true, // 不允许隐式的any类型
    "strictNullChecks": true, // 不允许把null、undefined赋值给其他类型的变量
    "strictFunctionTypes": true, // 不允许函数参数双向协变
    "strictPropertyInitialization": true, // 类的实例属性必须初始化
    "strictBindCallApply": true, // 严格的bind/call/apply检查
    "noImplicitThis": true, // 不允许this有隐式的any类型
    "noUnusedLocals": true, // 检查只声明、未使用的局部变量(只提示不报错)
    "noUnusedParameters": true, // 检查未使用的函数参数(只提示不报错)
    "noFallthroughCasesInSwitch": true, // 防止switch语句贯穿(即如果没有break语句后面不会执行)
    "noImplicitReturns":true, //每个分支都会有返回值
    "esModuleInterop": true, // 允许export=导出,由import from 导入
    "allowUmdGlobalAccess": true, // 允许在模块中全局变量的方式访问umd模块
    "moduleResolution": "node", // 模块解析策略,ts默认用node的解析策略,即相对的方式导入
    "baseUrl": "./", // 解析非相对模块的基地址,默认是当前目录
    "paths": { // 路径映射,相对于baseUrl
      // 如使用jq时不想使用默认版本,而需要手动指定版本,可进行如下配置
      "jquery": ["node_modules/jquery/dist/jquery.min.js"]
    },
    "rootDirs": ["src","out"], // 将多个目录放在一个虚拟目录下,用于运行时,即编译后引入文件的位置可能发生变化,这也设置可以虚拟src和out在同一个目录下,不用再去改变路径也不会报错
    "listEmittedFiles": true, // 打印输出文件
    "listFiles": true,// 打印编译的文件(包括引用的声明文件)
    "forceConsistentCasingInFileNames": true,// 禁止对同一个文件的不一致引用
    "skipLibCheck": true,	// 忽略所有的声明文件(*.d.ts)的类型检查
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

# 4.3 工程引用

# 4.3.1 composite

  • 工程可以被引用和进行增量编译。

# 4.3.2 declaration

  • 必须开启。

# 4.3.3 references

  • 该工程所依赖的工程。

# 4.3.4 tsc命令

# 4.3.4.1 tsc --build模式
  • 单独构建一个工程,依赖工程也会被构建。
# 4.3.4.2 tsc编译少量ts文件
/*
  参数介绍:
  --outFile // 编译后生成的文件名称
  --target  // 指定ECMAScript目标版本
  --module  // 指定生成哪个模块系统代码
  index.ts  // 源文件
*/
$ tsc --outFile leo.js --target es3 --module amd index.ts
1
2
3
4
5
6
7
8