Files
nice-app-web/.babelrc
focp212@naver.com 05238b04c1 첫 커밋
2025-09-05 15:36:48 +09:00

37 lines
668 B
Plaintext

{
"presets": [
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
],
"plugins": [
[
"@emotion/babel-plugin-jsx-pragmatic",
{
"export": "jsx",
"import": "__to_avoid_prepending_/** @jsxImportSource @emotion/react */",
"module": "@emotion/react"
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "__to_avoid_prepending_/** @jsxImportSource @emotion/react */"
}
],
[
"module-resolver",
{
"root": ["."],
"alias": {
"~": "./src"
}
}
],
["babel-plugin-styled-components"]
]
}