TypeScript
类型
准备本地环境
初始化 TypeScript 项目, 生成 package.json
文件:
sh
npm init -y
安装 typescript
:
sh
yarn add typescript -D
初始化 TypeScript 配置文件:
sh
npx tsc--init
输出:
sh
Created a new tsconfig.json with:
target: es2016
module: commonjs
strict: true
esModuleInterop: true
skipLibCheck: true
forceConsistentCasingInFileNames: true
You can learn more at https://aka.ms/tsconfig
如果不想准备本地环境, 只是学习, 可以使用 Typescript Playground