Webpack: ОШИБКА в ./src/index.tsx Модуль не найден: Ошибка: не удается разрешить './App' в '...' - PullRequest
0 голосов
/ 28 февраля 2019

У меня возникает следующая ошибка при попытке обслужить мое приложение через webpack-dev-server:

ERROR in ./src/index.tsx
Module not found: Error: Can't resolve './App' in 
'C:\Users\user\Desktop\react-resources-boilerplate\src'
 @ ./src/index.tsx 15:28-44
 @ multi (webpack)-dev-server/client?http://localhost:8080 ./src/index.tsx

Вот мой файл конфигурации webpack:

const HtmlWebPackPlugin = require('html-webpack-plugin');
const path = require('path');

module.exports = {
  entry: path.resolve(__dirname, 'src', 'index.tsx'),
  module: {
    rules: [
      {
        test: /\.ts|\.tsx$/,
        loader: "ts-loader",
      },
    ]
  },

  plugins: [
    new HtmlWebPackPlugin({
      template: "./src/index.html",
      filename: "./index.html"
    })
  ]
};

Вот мой tsconfigfile:

{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "jsx": "react",
    "sourceMap": true,
    "outDir": "./dist",
    "rootDir": "./src",
    "strict": true,
    "noImplicitAny": true,
    "esModuleInterop": true
  }
}

Вот мой файл index.tsx:

import * as React from 'react';
import { render } from 'react-dom';
import App from './App';

const root = document.querySelector('#root')
render(<App />, root)

Помощь оценена Спасибо

1 Ответ

0 голосов
/ 28 февраля 2019

Добавьте следующее в конфигурацию вашего веб-пакета:

module.exports = {
    // ...
    // existing code goes here
    // ...

    resolve: {
        extensions: ['.ts', 'tsx'],
    },
};

Дополнительная информация в документах .

...