Summary
Prefer absolute imports such as @/core/... over deep relative imports like ../../... across source and tests.
Context
Deep relative imports make files harder to move during refactors. The alias should work consistently for runtime, build tooling, tests, and linting before imports are updated.
Acceptance Criteria
Notes
Do not introduce broad compatibility layers unless the current build or runtime requires them.
Summary
Prefer absolute imports such as
@/core/...over deep relative imports like../../...across source and tests.Context
Deep relative imports make files harder to move during refactors. The alias should work consistently for runtime, build tooling, tests, and linting before imports are updated.
Acceptance Criteria
@/...imports.Notes
Do not introduce broad compatibility layers unless the current build or runtime requires them.