create-react-app使用TypeScript编译器做什么?

时间:2019-05-11 19:18:01

标签: typescript create-react-app

使用新的--typescript选项,Create React App会生成对typescript编译器的依赖关系(还有其他一些更改)。但是,它使用@babel/preset-typescript来编译TypeScript。那么它使用TypeScript编译器做什么呢?另外,tsconfig.js文件的用途是什么?

1 个答案:

答案 0 :(得分:2)

@babel/plugin-transform-typescript使用的

@babel/preset-typescript不会进行类型检查,它只是剥离类型信息,这要快得多。为了进行类型检查,您需要安装和设置TypeScript。

https://babeljs.io/docs/en/babel-plugin-transform-typescript/