错误为: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/"),
}),
);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…