Using Hugo modules only in theme

Hello,

Is it possible to use Hugo modules only in theme and not in the project such keeping the go.mod file in theme?

# NewHugoSite/themes/a-theme/config/_default/module.yaml
- NewHugoSite
  |- themes
  |   |- a-theme
  |       |- go.mod
  |       |- config
  |           |- _default
  |               |- module.yaml


# instead of having to use it like this: NewHugoSite/config/_default/module.yaml
- NewHugoSite
  |- config
  |  |- _default
  |     |- module.yaml
  |- themes
  |- go.mod

Thanks