在我的nextjs项目中,我已映射路径jsconfig.json
以轻松进行绝对导入
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["./*"]
},
"target": "es6",
"module": "commonjs",
"experimentalDecorators": true
}
}
我的导入路径如下所示
import { VIEW } from '@/src/shared/constants';
我的eslintrc.js
设置指定为
module.exports = {
... ,
settings: {
"import/resolver": {
alias: {
extensions: [".js"],
map: ["@", "."]
}
}
}
}
我仍然收到错误消息说无法解决“ @ / what / ever / my / path / is”
我如何使eslint实现jsconfig路径