使用打字稿创建React应用-@ ts-ignore不起作用

时间:2019-02-25 15:50:23

标签: typescript create-react-app

我只是使用带有Typescript选项(https://facebook.github.io/create-react-app/docs/adding-typescript#docsNav)的CRA2来初始化一个新项目

但是当我在App.tsx上编写此文件时,我无法在文件上使用ts-ignore

let a = 1
/* @ts-ignore */
a = '123'

启动纱线后,我得到了:

Type error: Type '"123"' is not assignable to type 'number'.

谢谢

0 个答案:

没有答案