我试图将 TypeScript 添加到使用绝对路径的现有 ReactJS 应用程序已经有一周了。所以我不能简单地回到 CRA,因为他们目前不支持路径别名。我正在使用"react-app-rewired": "2.1.8"
并且"react-scripts-ts": "^3.1.0",
抛出此错误,Cannot find module 'node_modules/react-scripts-ts/config/webpack.config'
.
我已经webpack.config.js
在根文件夹中添加了这个,仍然没有帮助,
const path = require('path');
module.exports = {
entry: './src/index.tsx',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
};
我尝试了一个向我建议的潜在修复程序,yarn add react-app-rewired@1.6.2
但仍然无法正常工作,它会导致许多其他问题。欢迎任何建议。