Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typescript语法错误并不会导致编译失败,这个是正常的么? #1700

Closed
xiaodid opened this issue Dec 26, 2018 · 5 comments
Closed
Labels
question Further information is requested

Comments

@xiaodid
Copy link

xiaodid commented Dec 26, 2018

问题描述
在ts或tsx文件中的语法错误,并不会导致npm run build:weapp或者npm run dev:weapp编译失败。

复现步骤
[复现问题的步骤]

  1. taro init myProject
  2. 选择typescript
  3. 选择Less
  4. 选择默认模版
  5. 等待项目依赖安装完
  6. 进入项目,修改app.tsx, 如:
  componentDidMount () {
    ddddd
  }
  1. run npm run build:weapp or npm run build:h5

期望行为
npm run dev:weapp应该指出相应错误,代码会被编译成

_createClass(t,[{key:"componentDidMount",value:function(){ddddd}}

我感觉是taro就这么设计的。

如果这个是正确行为,希望加入语法检查。

报错信息

系统信息
Taro CLI 1.2.0 environment info:
System:
OS: macOS 10.14.2
Shell: 5.3 - /bin/zsh
Binaries:
Node: 8.11.1 - /usr/local/bin/node
npm: 5.6.0 - /usr/local/bin/npm
npmPackages:
@tarojs/components: ^1.2.0 => 1.2.1
@tarojs/plugin-babel: ^1.2.0 => 1.2.1
@tarojs/plugin-csso: ^1.2.0 => 1.2.1
@tarojs/plugin-less: ^1.2.0 => 1.2.1
@tarojs/plugin-uglifyjs: ^1.2.0 => 1.2.1
@tarojs/router: ^1.2.0 => 1.2.1
@tarojs/taro: ^1.2.0 => 1.2.1
@tarojs/taro-alipay: ^1.2.0 => 1.2.1
@tarojs/taro-h5: ^1.2.0 => 1.2.1
@tarojs/taro-swan: ^1.2.0 => 1.2.1
@tarojs/taro-weapp: ^1.2.0 => 1.2.1
@tarojs/webpack-runner: ^1.2.0 => 1.2.1
eslint-config-taro: ^1.2.0 => 1.2.1
eslint-plugin-taro: ^1.2.0 => 1.2.1

补充信息

@taro-bot
Copy link

taro-bot bot commented Dec 26, 2018

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@yuche
Copy link
Contributor

yuche commented Dec 26, 2018

是正常的。

而且

  componentDidMount () {
    ddddd
  }

不是语法错误,因为不执行代码就不知道 ddddd 是不是没有定义。

@yuche yuche added question Further information is requested answered labels Dec 26, 2018
@taro-bot
Copy link

taro-bot bot commented Dec 26, 2018

Hello~

您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@xiaodid
Copy link
Author

xiaodid commented Dec 27, 2018

是不是我要看到这种错误,只能手动运行tsc才行了?一边开一个npm run dev:weapp,再开一个tsc --watch
希望后续能在build过程中把类型检查和sourcemap也加上,这样就完美了。
感谢。

@yuche
Copy link
Contributor

yuche commented Dec 27, 2018

你编辑器的时候也会报错,我认为只有在 precommit 的检查就行了。build 的过程不会加上类型检查,加了又会有人让我取消掉,这事得用户自己决定。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants