使用Taro和Typescript进行小程序开发
使用指南
在使用 taro 生成 Typescript 模板以后,需要做以下修改:
配置 .eslintrc
- 加入
"no-undef": 0,
以解决变量undefined
的问题 - 加入
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }]
以解决JSX not allowed in files with extension '.tsx
增加配置文件
- tsconfig.json
- tslint 文件
增加依赖库
- yarn add –dev tslint
- yarn add –dev tslint-react
- yarn add –dev ptypescript-eslint-parser
开始使用
1 |
|
代码静态检查
1 | yarn run lint |