typescript sorting 源码
打字稿排序 设定档 $ tsc --init $ vim tsconfig.json // "outDir": "./build", // "rootDir": "./src", $ npm init -y $ vim package.json // "scripts": { // "start:build": "tsc -W", // "start:run": "nodemon build/index.js", // "start": "concurrently npm:start:*" // } // nodemon: execute compiled code // concurrent: run multi script at the same tome $ npm install nodemon concurrently 跑 // watch and recompil
用户评论