在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
安装链接: https://nodejs.org/zh-cn/ 安装测试: node -v npm -v
sudo npm install typescript -g npm install typescript -D(--dev) tsc --version
4. 关于tsconfig.json的配置,详见: https://github.com/hstarorg/HstarDoc/blob/master/%E5%89%8D%E7%AB%AF%E7%9B%B8%E5%85%B3/TypeScript%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6tsconfig%E7%AE%80%E6%9E%90.md
5. 常用tsconfig配置: { "compilerOptions": { "target": "ES5", "module": "commonjs", "emitDecoratorMetadata": true, "experimentalDecorators": true, "sourceMap": true, "noEmitHelpers": true }, "exclude": [ "node_modules", "typings/main", "typings/main.d.ts" ], "compileOnSave": false }
|
请发表评论