$ react-scripts start
The following changes are being made to your tsconfig.json file:
- compilerOptions.jsx must be preserve (JSX is compiled by Babel)
- compilerOptions.baseUrl must not be set (absolute imports are not supported (yet))
- compilerOptions.paths must not be set (aliased imports are not supported)
给tsconfig添加上baseUrl、paths属性后便会出现以上log,然后tsconfig中的内容会自动被删除,有没有朋友碰到过同样的问题的。