在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开始TypeScript开发之前,我们得掌握如何创建一个最初的工程。 下面是创建一个新的工程需要用到的若干语句。
https://www.cnblogs.com/xiaoxiaochengxuyuan/p/6137574.html
typescript开发的准备工作: 1.准备工作 1.1安装node.js (www.nodejs.cn) 2.typescript里面找不到 'http'模块 npm install –save @types/jquery
3.1.初始tsc环境,生成tsconfig.json文件
如果你的工程没有运行起来,那你要注意你的 task.json文件 在 【Terminal】 -> 【Configure Task】里面,选择 【tsc:build - tscconfig.json】和【tscwatch - tscconfig.json】 这是一个可以参考的task.json文件。 { "version": "2.0.0", "tasks": [ { "type": "typescript", "tsconfig": "tsconfig.json", "problemMatcher": [ "$tsc" ], "group": "build", "label": "tsc: build - tsconfig.json" }, { "type": "typescript", "tsconfig": "tsconfig.json", "option": "watch", "problemMatcher": [ "$tsc-watch" ], "group": "build", "label": "tsc: watch - tsconfig.json" } ] }
附带一个 工程 https://github.com/liangzai90/websockets-client-and-server 下载下来之后,在vscode里面,点击 view -> terminate ,在这个终端里面执行 npm install 将依赖包下载到本地。
win10 脚本被禁用问题: set-ExecutionPolicy RemoteSigned
功能拓展: 1.添加代码检查插件 npm install --save-dev eslint npm install --save-dev typescript @typescript-eslint/parser npm install --save-dev @typescript-eslint/eslint-plugin 参考地址: https://ts.xcatliu.com/engineering/lint 或者,直接在vscode的工具栏侧面,搜索 ESLint 插件,安装即可。
|
请发表评论