gpt4 book ai didi

typescript - Next.js typescript 使用 babel-plugin-module-resolver 导入别名

转载 作者:行者123 更新时间:2023-12-05 03:54:09 36 4
gpt4 key购买 nike

我正在使用 typescript 建立一个 Next.js 项目。我一直在遵循几个指南,但我似乎遇到了导入别名的问题。

我不确定这是我的配置问题还是 Next.js 问题。

这里有几页引用了类似的问题,我遵循了这些问题的提示但没有成功:

我试着弄乱 Next.js 的 webpack 配置来解决这个问题(将 resolve.alias 选项直接添加到 next.config.js,但这没有帮助而且 Next.js 现在应该支持开箱即用的 typescript (resolve.extensions 定义明确)

Next.js 版本 9.3.5

babel-plugin-module-resolver 版本 4.0.0

tsconfig.json

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@components/*": ["./components/*"],
"@icons/*": ["./assets/icons/*"],
"@views/*": ["./views/*"]
}
},
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
]
}

.babelrc

{
"presets": [ "next/babel" ],
"plugins": [
"inline-react-svg",
["module-resolver", {
"root": ["./"],
"alias": {
"@components": "./components",
"@icons": "./assets/icons",
"@views": "./views"
}
}]
]
}

最佳答案

在进一步思考之后,我意识到我正在尝试做两件事:

  • 处理 typescript 别名
  • 使用 babel-plugin-inline-react-svg 导入 SVGS

提供的配置实际上适用于常规 typescript 导入,但是此配置不允许 svg 导入别名,我尝试将扩展添加到模块解析器但没有成功。

在做了更多研究之后,我发现了一个正在解决的未解决问题:babel-plugin-inline-react-svg: https://github.com/airbnb/babel-plugin-inline-react-svg/pull/17

这似乎是 babel-plugin-module-resolver 和 babel-plugin-inline-react-svg 之间已知的兼容性问题。

关于typescript - Next.js typescript 使用 babel-plugin-module-resolver 导入别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61241112/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com