Fix babel error

This commit is contained in:
seunghyunOh
2022-12-04 08:32:43 +09:00
parent 8bbd5a1184
commit de7e5016dd

View File

@@ -1,8 +1,6 @@
{
"extends": "next/core-web-vitals",
"plugins": [
"simple-import-sort"
],
"extends": ["next/babel", "next/core-web-vitals"],
"plugins": ["simple-import-sort"],
"rules": {
"react-hooks/exhaustive-deps": "off",
"simple-import-sort/exports": "warn",
@@ -18,15 +16,9 @@
"^(assert|buffer|child_process|cluster|console|constants|crypto|dgram|dns|domain|events|fs|http|https|module|net|os|path|punycode|querystring|readline|repl|stream|string_decoder|sys|timers|tls|tty|url|util|vm|zlib|freelist|v8|process|async_hooks|http2|perf_hooks)(/.*|$)"
],
// Packages `react` related packages
[
"^react",
"^next",
"^@?\\w"
],
["^react", "^next", "^@?\\w"],
// Internal packages.
[
"^~(/.*|$)"
],
["^~(/.*|$)"],
// Relative imports
[
"^\\.\\.(?!/?$)",
@@ -36,11 +28,9 @@
"^\\./?$"
],
// Style imports.
[
"^.+\\.?(css|scss)$"
]
["^.+\\.?(css|scss)$"]
]
}
]
}
}
}