Could not locate supplied template: react+ts搭建

1. react+ts创建

  1. 我们在是用下create-react-app之前要下载一下
npm install create-react-app -g
  1. 使用一下命令创建ts的react框架
    create-react-app my-app --scripts-version=react-scripts-ts

2. 遇见问题

我们用以上创建之后会提示一段代码选择“Y”之后发现我们创建的项目没有模板,提示

在这里插入图片描述

同时打开我们创建的项目没有以下模板文件
Could not locate supplied template: react+ts搭建_第1张图片

3.解决方案,我们换种方式来创建

命令行如下
create-react-app react-project-name(项目名称) --template typescript

create-react-app react-ts-dom --template typescript

反问??????

想问一下上面方式为什么搭建的没有模板呢?有大佬知道可以解释一下吗?谢谢

你可能感兴趣的:(react,react.js,javascript)