为什么 React CLI 不将模板安装为打字稿?
Why react CLI does not installing template as typescript?
在 运行 npm init react-app new-app --template typescript
之后,它只是创建了一个 javascript 模板项目,而不是打字稿。我想使用 CLI 创建一个 typescript 项目。
节点 JS 版本:15.9.0
NPM 版本:7.0.15
根据 the docs,在 NPM v7 中:
Any additional options will be passed directly to the command, so npm init foo -- --hello
will map to npx create-foo --hello
.
这与 v6 有细微的不同,其中:
Any additional options will be passed directly to the command, so npm init foo --hello
will map to npx create-foo --hello
.
请注意 v7 的附加 --
,在您的情况下为:
npm init react-app -- new-app --template typescript
在 运行 npm init react-app new-app --template typescript
之后,它只是创建了一个 javascript 模板项目,而不是打字稿。我想使用 CLI 创建一个 typescript 项目。
节点 JS 版本:15.9.0
NPM 版本:7.0.15
根据 the docs,在 NPM v7 中:
Any additional options will be passed directly to the command, so
npm init foo -- --hello
will map tonpx create-foo --hello
.
这与 v6 有细微的不同,其中:
Any additional options will be passed directly to the command, so
npm init foo --hello
will map tonpx create-foo --hello
.
请注意 v7 的附加 --
,在您的情况下为:
npm init react-app -- new-app --template typescript