react项目修改tsconfig.json设置了paths别名报错

错误为:TypeError: Cannot add property paths, object is not extensible

// tsconfig.json
{
  "extends": "./paths.json",
  "compilerOptions": {
    "target": "es5",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "react"
  },
  "include": ["src", "config-overrides.js"]
}

// paths.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["src/*"]
    }
  }
}

// config-overrides.js
const {
  override,
  addWebpackAlias,
} = require("customize-cra");
const path = require('path');

module.exports = override(
  // 扩展@指令符号
  addWebpackAlias({
    "@": path.resolve(__dirname, "src/"),
  }),
);
阅读 4.7k
2 个回答

装一个 react-script

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题