1. 首页
  2. 数据库
  3. 其它
  4. learn typescript 源码

learn typescript 源码

上传者: 2021-04-07 04:29:39上传 ZIP文件 52KB 热度 17次
学习打字稿 开始吧 Step1安装依赖项 $ npm init -y $ npm install -D typescript ts-node nodemon $ ./node_modules/.bin/tsc --init 步骤2更改TypeScript设置 { " compileOptions " : { " noImplicitAny " : true , " strictNullChecks " : true } } Step3 Nodemon设置 { " watch " : [ " src " ], " ext " : " ts " , " exec " : " ts-node src/main.ts " } Step4 NPM脚本设置 { " scripts " : { " start " : " nodemon " } } 步
用户评论