找不到模块:错误:无法从 React 18 w/TypeScript 解析“./App”

问题描述 投票:0回答:2

尝试升级到 React 18 时出现此错误。

我想知道这是否与我的文件类型有关?我正在使用打字稿,所以我假设应用程序和索引都必须以 .tsx 结尾?

应用程序和索引文件都在同一个文件夹(src)中

ERROR in ./src/index.tsx 12:0-24

Module not found: Error: Can't resolve './App' in 'C:\Users\CleverlyDone\Documents\GitHub\myProjectName\src'

我的文件是:

index.tsx


/** Vendor */
import React from "react";

/** Shared CSS */
import "./dist/css/index.css";

/** Entry Point */
import App from "./App";

/** Analytics */
// import reportWebVitals from "./reportWebVitals";

import { createRoot } from "react-dom/client";
const container = document.getElementById("app");
const root = createRoot(container!);
root.render(<App />);

应用程序.tsx

/** Vendor **/
import React from "react";

/** CSS */
import "./dist/css/app.css";

export default function App() {
  return (
      <div>Placeholder</div>
  );
}
javascript reactjs typescript
2个回答
2
投票

尝试将此添加到您的

tsconfig.json


{
  "compilerOptions": {
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "noFallthroughCasesInSwitch": true,
    "jsx": "react-jsx"
  },
  "include": [
    "src",
  ]
}

0
投票

问题可能出在您的

webpack
上,因为您正在使用
Typescript
。在你的 webpack 中尝试添加
ts
tsx

module.exports = {
    //Rest of your code
    resolve: {
        extensions: ['.ts', '.tsx'],
    },
};
© www.soinside.com 2019 - 2024. All rights reserved.