fix(module): mark functions used in exports as pure (#3604)

This commit is contained in:
Daniel Roe
2025-03-18 13:48:28 +00:00
committed by GitHub
parent dec2730aae
commit 57efc78a3b
6 changed files with 6 additions and 4 deletions

View File

@@ -4,4 +4,4 @@ import _appConfig from '#build/app.config'
const appConfigTv = _appConfig as AppConfig & { ui: { tv: typeof defaultConfig } }
export const tv = createTV(appConfigTv.ui?.tv)
export const tv = /* @__PURE__ */ createTV(appConfigTv.ui?.tv)