UNPKG

@rosskevin/ifvisible

Version:

Cross-browser, lightweight way to check if user is looking at the page or interacting with it. (wrapper around HTML5 visibility api)

11 lines (9 loc) 288 B
import { defineConfig } from 'tsup' // this is meant to be executed cwd in the package dir, but shared amongst all via `yarn tsup --config ../../tsup.config.ts` export default defineConfig({ entry: ['src/index.ts'], sourcemap: true, clean: true, format: ['esm'], dts: true, })