├── .github ├── FUNDING.yaml ├── renovate.json └── workflows │ ├── ci.yaml │ ├── notification.yaml │ └── release.yaml ├── .gitignore ├── LICENSE ├── README.md ├── bun.lock ├── eslint.config.js ├── index.ts ├── package.json ├── tests ├── __snapshots__ │ └── build.test.ts.snap ├── build.test.ts └── fixtures │ ├── _main.ts │ ├── folder │ └── child.ts │ └── main.ts └── tsconfig.json /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: ryoppippi 2 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/.github/workflows/notification.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/bun.lock -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/package.json -------------------------------------------------------------------------------- /tests/__snapshots__/build.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/tests/__snapshots__/build.test.ts.snap -------------------------------------------------------------------------------- /tests/build.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/tests/build.test.ts -------------------------------------------------------------------------------- /tests/fixtures/_main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/tests/fixtures/_main.ts -------------------------------------------------------------------------------- /tests/fixtures/folder/child.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/tests/fixtures/folder/child.ts -------------------------------------------------------------------------------- /tests/fixtures/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/tests/fixtures/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/bun-plugin-isolated-decl/HEAD/tsconfig.json --------------------------------------------------------------------------------