File size: 15,649 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 |
import path from 'path'
import { WEBPACK_LAYERS, type WebpackLayerName } from '../../lib/constants'
import type {
NextConfig,
ExperimentalConfig,
EmotionConfig,
StyledComponentsConfig,
} from '../../server/config-shared'
import type { ResolvedBaseUrl } from '../load-jsconfig'
import { shouldUseReactServerCondition, isWebpackAppPagesLayer } from '../utils'
import { escapeStringRegexp } from '../../shared/lib/escape-regexp'
const nextDirname = path.dirname(require.resolve('next/package.json'))
const nextDistPath = new RegExp(
`${escapeStringRegexp(nextDirname)}[\\/]dist[\\/](shared[\\/]lib|client|pages)`
)
const nodeModulesPath = /[\\/]node_modules[\\/]/
const regeneratorRuntimePath = require.resolve(
'next/dist/compiled/regenerator-runtime'
)
function isTypeScriptFile(filename: string) {
return filename.endsWith('.ts') || filename.endsWith('.tsx')
}
function isCommonJSFile(filename: string) {
return filename.endsWith('.cjs')
}
// Ensure Next.js internals and .cjs files are output as CJS modules,
// By default all modules are output as ESM or will treated as CJS if next-swc/auto-cjs plugin detects file is CJS.
function shouldOutputCommonJs(filename: string) {
return isCommonJSFile(filename) || nextDistPath.test(filename)
}
export function getParserOptions({ filename, jsConfig, ...rest }: any) {
const isTSFile = filename.endsWith('.ts')
const hasTsSyntax = isTypeScriptFile(filename)
const enableDecorators = Boolean(
jsConfig?.compilerOptions?.experimentalDecorators
)
return {
...rest,
syntax: hasTsSyntax ? 'typescript' : 'ecmascript',
dynamicImport: true,
decorators: enableDecorators,
// Exclude regular TypeScript files from React transformation to prevent e.g. generic parameters and angle-bracket type assertion from being interpreted as JSX tags.
[hasTsSyntax ? 'tsx' : 'jsx']: !isTSFile,
importAssertions: true,
}
}
function getBaseSWCOptions({
filename,
jest,
development,
hasReactRefresh,
globalWindow,
esm,
modularizeImports,
swcPlugins,
compilerOptions,
resolvedBaseUrl,
jsConfig,
supportedBrowsers,
swcCacheDir,
serverComponents,
serverReferenceHashSalt,
bundleLayer,
isCacheComponents,
cacheHandlers,
useCacheEnabled,
trackDynamicImports,
}: {
filename: string
jest?: boolean
development: boolean
hasReactRefresh: boolean
globalWindow: boolean
esm: boolean
modularizeImports?: NextConfig['modularizeImports']
compilerOptions: NextConfig['compiler']
swcPlugins: ExperimentalConfig['swcPlugins']
resolvedBaseUrl?: ResolvedBaseUrl
jsConfig: any
supportedBrowsers: string[] | undefined
swcCacheDir?: string
serverComponents?: boolean
serverReferenceHashSalt: string
bundleLayer?: WebpackLayerName
isCacheComponents?: boolean
cacheHandlers?: ExperimentalConfig['cacheHandlers']
useCacheEnabled?: boolean
trackDynamicImports?: boolean
}) {
const isReactServerLayer = shouldUseReactServerCondition(bundleLayer)
const isAppRouterPagesLayer = isWebpackAppPagesLayer(bundleLayer)
const parserConfig = getParserOptions({ filename, jsConfig })
const paths = jsConfig?.compilerOptions?.paths
const enableDecorators = Boolean(
jsConfig?.compilerOptions?.experimentalDecorators
)
const emitDecoratorMetadata = Boolean(
jsConfig?.compilerOptions?.emitDecoratorMetadata
)
const useDefineForClassFields = Boolean(
jsConfig?.compilerOptions?.useDefineForClassFields
)
const plugins = (swcPlugins ?? [])
.filter(Array.isArray)
.map(([name, options]: any) => [require.resolve(name), options])
return {
jsc: {
...(resolvedBaseUrl && paths
? {
baseUrl: resolvedBaseUrl.baseUrl,
paths,
}
: {}),
externalHelpers: !process.versions.pnp && !jest,
parser: parserConfig,
experimental: {
keepImportAttributes: true,
emitAssertForImportAttributes: true,
plugins,
cacheRoot: swcCacheDir,
},
transform: {
// Enables https://github.com/swc-project/swc/blob/0359deb4841be743d73db4536d4a22ac797d7f65/crates/swc_ecma_ext_transforms/src/jest.rs
...(jest
? {
hidden: {
jest: true,
},
}
: {}),
legacyDecorator: enableDecorators,
decoratorMetadata: emitDecoratorMetadata,
useDefineForClassFields: useDefineForClassFields,
react: {
importSource:
jsConfig?.compilerOptions?.jsxImportSource ??
(compilerOptions?.emotion && !isReactServerLayer
? '@emotion/react'
: 'react'),
runtime: 'automatic',
pragmaFrag: 'React.Fragment',
throwIfNamespace: true,
development: !!development,
useBuiltins: true,
refresh: !!hasReactRefresh,
},
optimizer: {
simplify: false,
globals: jest
? null
: {
typeofs: {
window: globalWindow ? 'object' : 'undefined',
},
envs: {
NODE_ENV: development ? '"development"' : '"production"',
},
// TODO: handle process.browser to match babel replacing as well
},
},
regenerator: {
importPath: regeneratorRuntimePath,
},
},
},
sourceMaps: jest ? 'inline' : undefined,
removeConsole: compilerOptions?.removeConsole,
// disable "reactRemoveProperties" when "jest" is true
// otherwise the setting from next.config.js will be used
reactRemoveProperties: jest
? false
: compilerOptions?.reactRemoveProperties,
// Map the k-v map to an array of pairs.
modularizeImports: modularizeImports
? Object.fromEntries(
Object.entries(modularizeImports).map(([mod, config]) => [
mod,
{
...config,
transform:
typeof config.transform === 'string'
? config.transform
: Object.entries(config.transform).map(([key, value]) => [
key,
value,
]),
},
])
)
: undefined,
relay: compilerOptions?.relay,
// Always transform styled-jsx and error when `client-only` condition is triggered
styledJsx: compilerOptions?.styledJsx ?? {
useLightningcss: jsConfig?.experimental?.useLightningcss ?? false,
},
// Disable css-in-js libs (without client-only integration) transform on server layer for server components
...(!isReactServerLayer && {
// eslint-disable-next-line @typescript-eslint/no-use-before-define
emotion: getEmotionOptions(compilerOptions?.emotion, development),
// eslint-disable-next-line @typescript-eslint/no-use-before-define
styledComponents: getStyledComponentsOptions(
compilerOptions?.styledComponents,
development
),
}),
serverComponents:
serverComponents && !jest
? {
isReactServerLayer,
cacheComponentsEnabled: isCacheComponents,
useCacheEnabled,
}
: undefined,
serverActions:
isAppRouterPagesLayer && !jest
? {
isReactServerLayer,
isDevelopment: development,
useCacheEnabled,
hashSalt: serverReferenceHashSalt,
cacheKinds: ['default', 'remote', 'private'].concat(
cacheHandlers ? Object.keys(cacheHandlers) : []
),
}
: undefined,
// For app router we prefer to bundle ESM,
// On server side of pages router we prefer CJS.
preferEsm: esm,
lintCodemodComments: true,
trackDynamicImports: trackDynamicImports,
debugFunctionName: development,
...(supportedBrowsers && supportedBrowsers.length > 0
? {
cssEnv: {
targets: supportedBrowsers,
},
}
: {}),
}
}
function getStyledComponentsOptions(
styledComponentsConfig: undefined | boolean | StyledComponentsConfig,
development: any
) {
if (!styledComponentsConfig) {
return null
} else if (typeof styledComponentsConfig === 'object') {
return {
...styledComponentsConfig,
displayName: styledComponentsConfig.displayName ?? Boolean(development),
}
} else {
return {
displayName: Boolean(development),
}
}
}
function getEmotionOptions(
emotionConfig: undefined | boolean | EmotionConfig,
development: boolean
) {
if (!emotionConfig) {
return null
}
let autoLabel = !!development
if (typeof emotionConfig === 'object' && emotionConfig.autoLabel) {
switch (emotionConfig.autoLabel) {
case 'never':
autoLabel = false
break
case 'always':
autoLabel = true
break
case 'dev-only':
break
default:
emotionConfig.autoLabel satisfies never
}
}
return {
enabled: true,
autoLabel,
sourcemap: development,
...(typeof emotionConfig === 'object' && {
importMap: emotionConfig.importMap,
labelFormat: emotionConfig.labelFormat,
sourcemap: development && emotionConfig.sourceMap,
}),
}
}
export function getJestSWCOptions({
isServer,
filename,
esm,
modularizeImports,
swcPlugins,
compilerOptions,
jsConfig,
resolvedBaseUrl,
pagesDir,
serverReferenceHashSalt,
}: {
isServer: boolean
filename: string
esm: boolean
modularizeImports?: NextConfig['modularizeImports']
swcPlugins: ExperimentalConfig['swcPlugins']
compilerOptions: NextConfig['compiler']
jsConfig: any
resolvedBaseUrl?: ResolvedBaseUrl
pagesDir?: string
serverComponents?: boolean
serverReferenceHashSalt: string
}) {
let baseOptions = getBaseSWCOptions({
filename,
jest: true,
development: false,
hasReactRefresh: false,
globalWindow: !isServer,
modularizeImports,
swcPlugins,
compilerOptions,
jsConfig,
resolvedBaseUrl,
supportedBrowsers: undefined,
esm,
// Don't apply server layer transformations for Jest
// Disable server / client graph assertions for Jest
bundleLayer: undefined,
serverComponents: false,
serverReferenceHashSalt,
})
const useCjsModules = shouldOutputCommonJs(filename)
return {
...baseOptions,
env: {
targets: {
// Targets the current version of Node.js
node: process.versions.node,
},
},
module: {
type: esm && !useCjsModules ? 'es6' : 'commonjs',
},
disableNextSsg: true,
disablePageConfig: true,
pagesDir,
}
}
export function getLoaderSWCOptions({
// This is not passed yet as "paths" resolving is handled by webpack currently.
// resolvedBaseUrl,
filename,
development,
isServer,
pagesDir,
appDir,
isPageFile,
isCacheComponents,
hasReactRefresh,
modularizeImports,
optimizeServerReact,
optimizePackageImports,
swcPlugins,
compilerOptions,
jsConfig,
supportedBrowsers,
swcCacheDir,
relativeFilePathFromRoot,
serverComponents,
serverReferenceHashSalt,
bundleLayer,
esm,
cacheHandlers,
useCacheEnabled,
trackDynamicImports,
}: {
filename: string
development: boolean
isServer: boolean
pagesDir?: string
appDir?: string
isPageFile: boolean
hasReactRefresh: boolean
optimizeServerReact?: boolean
modularizeImports: NextConfig['modularizeImports']
isCacheComponents?: boolean
optimizePackageImports?: NonNullable<
NextConfig['experimental']
>['optimizePackageImports']
swcPlugins: ExperimentalConfig['swcPlugins']
compilerOptions: NextConfig['compiler']
jsConfig: any
supportedBrowsers: string[] | undefined
swcCacheDir: string
relativeFilePathFromRoot: string
esm?: boolean
serverComponents?: boolean
serverReferenceHashSalt: string
bundleLayer?: WebpackLayerName
cacheHandlers: ExperimentalConfig['cacheHandlers']
useCacheEnabled?: boolean
trackDynamicImports?: boolean
}) {
let baseOptions: any = getBaseSWCOptions({
filename,
development,
globalWindow: !isServer,
hasReactRefresh,
modularizeImports,
swcPlugins,
compilerOptions,
jsConfig,
// resolvedBaseUrl,
supportedBrowsers,
swcCacheDir,
bundleLayer,
serverComponents,
serverReferenceHashSalt,
esm: !!esm,
isCacheComponents,
cacheHandlers,
useCacheEnabled,
trackDynamicImports,
})
baseOptions.fontLoaders = {
fontLoaders: ['next/font/local', 'next/font/google'],
relativeFilePathFromRoot,
}
baseOptions.cjsRequireOptimizer = {
packages: {
'next/server': {
transforms: {
NextRequest: 'next/dist/server/web/spec-extension/request',
NextResponse: 'next/dist/server/web/spec-extension/response',
ImageResponse: 'next/dist/server/web/spec-extension/image-response',
userAgentFromString: 'next/dist/server/web/spec-extension/user-agent',
userAgent: 'next/dist/server/web/spec-extension/user-agent',
},
},
},
}
if (optimizeServerReact && isServer && !development) {
baseOptions.optimizeServerReact = {
optimize_use_state: false,
}
}
// Modularize import optimization for barrel files
if (optimizePackageImports) {
baseOptions.autoModularizeImports = {
packages: optimizePackageImports,
}
}
const isNodeModules = nodeModulesPath.test(filename)
const isAppBrowserLayer = bundleLayer === WEBPACK_LAYERS.appPagesBrowser
const moduleResolutionConfig = shouldOutputCommonJs(filename)
? {
module: {
type: 'commonjs',
},
}
: {}
let options: any
if (isServer) {
options = {
...baseOptions,
...moduleResolutionConfig,
// Disables getStaticProps/getServerSideProps tree shaking on the server compilation for pages
disableNextSsg: true,
disablePageConfig: true,
isDevelopment: development,
isServerCompiler: isServer,
pagesDir,
appDir,
preferEsm: !!esm,
isPageFile,
env: {
targets: {
// Targets the current version of Node.js
node: process.versions.node,
},
},
}
} else {
options = {
...baseOptions,
...moduleResolutionConfig,
disableNextSsg: !isPageFile,
isDevelopment: development,
isServerCompiler: isServer,
pagesDir,
appDir,
isPageFile,
...(supportedBrowsers && supportedBrowsers.length > 0
? {
env: {
targets: supportedBrowsers,
},
}
: {}),
}
if (!options.env) {
// Matches default @babel/preset-env behavior
options.jsc.target = 'es5'
}
}
// For node_modules in app browser layer, we don't need to do any server side transformation.
// Only keep server actions transform to discover server actions from client components.
if (isAppBrowserLayer && isNodeModules) {
options.disableNextSsg = true
options.disablePageConfig = true
options.isPageFile = false
options.optimizeServerReact = undefined
options.cjsRequireOptimizer = undefined
// Disable optimizer for node_modules in app browser layer, to avoid unnecessary replacement.
// e.g. typeof window could result differently in js worker or browser.
if (
options.jsc.transform.optimizer.globals?.typeofs &&
!filename.includes(nextDirname)
) {
delete options.jsc.transform.optimizer.globals.typeofs.window
}
}
return options
}
|