title | subtitle | date | tags |
---|---|---|---|
使用Taro和Typescript进行小程序开发 |
mini-program-develop-by-taro-and-typescript |
2018-06-16 15:03:25 -0700 |
Taro, TypeScript, MiniProgram, 小程序 |
在使用 taro 生成 Typescript 模板以后,需要做以下修改:
- 加入
"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
yarn install
yarn run lint