Я нахожу демо SSR (React + typcript + Next. js), и он использует эти два плагина.
Я был озадачен, почему его нужно оба из них ?
Насколько мне известно, эти два плагина сделали одинаковую работу , любой может объяснить, почему?
tsconfig. json
"paths": {
"@components/*": [
"./components/*"
],
"@helper/*": [
"./helper/*"
],
"@utils/*": [
"./utils/*"
],
"@interfaces/*": [
"./interfaces/*"
],
"@api/*": [
"./pages/api/*"
],
"@serverApi/*": [
"./server/api/*"
],
"@newscenter/*": [
"./newscenter/*"
],
"@spotcenter/*": [
"./spotcenter/*"
],
"@styles/*": [
"./styles/*"
]
}
.babelr c
"plugins": [
[
"module-resolver",
{
"root": ["./"],
"alias": {
"@components": "./components",
"@helper": "./helper",
"@utils": "./utils",
"@interfaces": "./interfaces",
"@api": "./pages/api",
"@serverApi": "./server/api",
"@newscenter": "./newscenter",
"@spotcenter": "./spotcenter",
"@styles": "./styles"
}
}
]
]