我一直在尝试使用 nrwl 工具来创建工作区。我已经创建了一个
npm init nx-workspace
然后将使用创建的应用程序移动 create-react-app --typescript
到该工作区中。
- 我得到:找不到模块'./logo.svg'.ts(2307)
- 由(在弹出 react-app 后得到
declare module '*.svg' {
import * as React from 'react';
export const ReactComponent: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
const src: string;
export default src;
}
然后我得到了(我认为是 webpack 抱怨)
ERROR in ./orig/logo.svg 1:0
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type.
> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3">
当 create-react-app 处理所有 webpack 转换时,我希望有同样的体验。