├── .changeset ├── bob-the-bundler-299-dependencies.md ├── bob-the-bundler-320-dependencies.md ├── bob-the-bundler-323-dependencies.md ├── bob-the-bundler-324-dependencies.md ├── bob-the-bundler-336-dependencies.md ├── bob-the-bundler-411-dependencies.md ├── bob-the-bundler-416-dependencies.md ├── bob-the-bundler-423-dependencies.md ├── bob-the-bundler-438-dependencies.md ├── bright-drinks-provide.md ├── config.json ├── neat-eyes-help.md ├── rare-lemons-count.md ├── thin-mails-clap.md └── wise-tigers-roll.md ├── .eslintrc.cjs ├── .github └── workflows │ ├── ci.yaml │ ├── pr.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.mjs ├── .vscode └── settings.json ├── CHANGELOG.md ├── README.md ├── jest-resolver.cjs ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── serializer.ts ├── src ├── command.ts ├── commands │ ├── bootstrap.ts │ ├── build.ts │ └── check.ts ├── config.ts ├── constants.ts ├── index.ts └── utils │ ├── __fixtures__ │ └── foo │ │ └── index.ts │ ├── get-root-package-json.ts │ ├── get-workspace-package-paths.ts │ ├── get-workspaces.ts │ ├── rewrite-code-imports.spec.ts │ ├── rewrite-code-imports.ts │ └── rewrite-exports.ts ├── test ├── __fixtures__ │ ├── simple-esm-only │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── simple-exports │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── sub │ │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── simple-monorepo-pnpm │ │ ├── package.json │ │ ├── packages │ │ │ ├── a │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ └── index.ts │ │ │ ├── b │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── foo.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── log-the-world.ts │ │ │ └── c │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ └── index.ts │ │ ├── pnpm-workspace.yaml │ │ └── tsconfig.json │ ├── simple-monorepo │ │ ├── package.json │ │ ├── packages │ │ │ ├── a │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ └── index.ts │ │ │ ├── b │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── foo.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── log-the-world.ts │ │ │ └── c │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── simple-types-only │ │ ├── README.md │ │ ├── foo.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── simple │ │ ├── README.md │ │ ├── foo.json │ │ ├── package.json │ │ ├── src │ │ │ ├── file-that-throws.ts │ │ │ ├── index.ts │ │ │ └── style.css │ │ └── tsconfig.json │ └── tsconfig-build-json │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json ├── exports.test.ts ├── integration.spec.ts ├── jest-resolver.test.ts └── ts-tests │ ├── .gitignore │ ├── fixture.ts │ ├── package.json │ ├── run-tests.mjs │ ├── tsconfig.commonjs-node.json │ ├── tsconfig.commonjs-node16.json │ ├── tsconfig.commonjs-nodenext.json │ ├── tsconfig.esnext-node.json │ ├── tsconfig.node16-node16.json │ └── tsconfig.nodenext-nodenext.json ├── tsconfig.json └── vite.config.ts /.changeset/bob-the-bundler-299-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-299-dependencies.md -------------------------------------------------------------------------------- /.changeset/bob-the-bundler-320-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-320-dependencies.md -------------------------------------------------------------------------------- /.changeset/bob-the-bundler-323-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-323-dependencies.md -------------------------------------------------------------------------------- /.changeset/bob-the-bundler-324-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-324-dependencies.md -------------------------------------------------------------------------------- /.changeset/bob-the-bundler-336-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-336-dependencies.md -------------------------------------------------------------------------------- /.changeset/bob-the-bundler-411-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-411-dependencies.md -------------------------------------------------------------------------------- /.changeset/bob-the-bundler-416-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-416-dependencies.md -------------------------------------------------------------------------------- /.changeset/bob-the-bundler-423-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-423-dependencies.md -------------------------------------------------------------------------------- /.changeset/bob-the-bundler-438-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bob-the-bundler-438-dependencies.md -------------------------------------------------------------------------------- /.changeset/bright-drinks-provide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/bright-drinks-provide.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/neat-eyes-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/neat-eyes-help.md -------------------------------------------------------------------------------- /.changeset/rare-lemons-count.md: -------------------------------------------------------------------------------- 1 | --- 2 | 'bob-the-bundler': major 3 | --- 4 | 5 | Drop "typescript" package.json field 6 | -------------------------------------------------------------------------------- /.changeset/thin-mails-clap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/thin-mails-clap.md -------------------------------------------------------------------------------- /.changeset/wise-tigers-roll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.changeset/wise-tigers-roll.md -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@theguild/prettier-config'; 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/README.md -------------------------------------------------------------------------------- /jest-resolver.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/jest-resolver.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/renovate.json -------------------------------------------------------------------------------- /serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/serializer.ts -------------------------------------------------------------------------------- /src/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/command.ts -------------------------------------------------------------------------------- /src/commands/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/commands/bootstrap.ts -------------------------------------------------------------------------------- /src/commands/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/commands/build.ts -------------------------------------------------------------------------------- /src/commands/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/commands/check.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/__fixtures__/foo/index.ts: -------------------------------------------------------------------------------- 1 | console.log('hello'); 2 | -------------------------------------------------------------------------------- /src/utils/get-root-package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/utils/get-root-package-json.ts -------------------------------------------------------------------------------- /src/utils/get-workspace-package-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/utils/get-workspace-package-paths.ts -------------------------------------------------------------------------------- /src/utils/get-workspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/utils/get-workspaces.ts -------------------------------------------------------------------------------- /src/utils/rewrite-code-imports.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/utils/rewrite-code-imports.spec.ts -------------------------------------------------------------------------------- /src/utils/rewrite-code-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/utils/rewrite-code-imports.ts -------------------------------------------------------------------------------- /src/utils/rewrite-exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/src/utils/rewrite-exports.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-esm-only/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-esm-only/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-esm-only/src/index.ts: -------------------------------------------------------------------------------- 1 | export const someNumber = 1; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple-esm-only/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-esm-only/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-exports/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-exports/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-exports/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-exports/src/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-exports/src/sub/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-exports/src/sub/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-exports/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-exports/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/packages/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/packages/a/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/packages/a/src/index.ts: -------------------------------------------------------------------------------- 1 | export const a = 'WUP'; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/packages/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/packages/b/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/packages/b/src/foo.ts: -------------------------------------------------------------------------------- 1 | export const b = 'SUP'; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/packages/b/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/packages/b/src/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/packages/b/src/log-the-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/packages/b/src/log-the-world.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/packages/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/packages/c/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/packages/c/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/packages/c/src/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/pnpm-workspace.yaml -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo-pnpm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo-pnpm/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/packages/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo/packages/a/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/packages/a/src/index.ts: -------------------------------------------------------------------------------- 1 | export const a = 'WUP'; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/packages/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo/packages/b/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/packages/b/src/foo.ts: -------------------------------------------------------------------------------- 1 | export const b = 'SUP'; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/packages/b/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo/packages/b/src/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/packages/b/src/log-the-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo/packages/b/src/log-the-world.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/packages/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo/packages/c/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/packages/c/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo/packages/c/src/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-monorepo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-monorepo/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-types-only/README.md: -------------------------------------------------------------------------------- 1 | Hi types! 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple-types-only/foo.json: -------------------------------------------------------------------------------- 1 | { "hi": 1 } 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple-types-only/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-types-only/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple-types-only/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-types-only/src/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple-types-only/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple-types-only/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/simple/README.md: -------------------------------------------------------------------------------- 1 | Hello! 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple/foo.json: -------------------------------------------------------------------------------- 1 | { "hi": 1 } 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple/package.json -------------------------------------------------------------------------------- /test/__fixtures__/simple/src/file-that-throws.ts: -------------------------------------------------------------------------------- 1 | throw new Error('KEK'); 2 | -------------------------------------------------------------------------------- /test/__fixtures__/simple/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple/src/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/simple/src/style.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/simple/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/simple/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/tsconfig-build-json/README.md: -------------------------------------------------------------------------------- 1 | Hello! 2 | -------------------------------------------------------------------------------- /test/__fixtures__/tsconfig-build-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/tsconfig-build-json/package.json -------------------------------------------------------------------------------- /test/__fixtures__/tsconfig-build-json/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/tsconfig-build-json/src/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/tsconfig-build-json/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/tsconfig-build-json/tsconfig.build.json -------------------------------------------------------------------------------- /test/__fixtures__/tsconfig-build-json/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/__fixtures__/tsconfig-build-json/tsconfig.json -------------------------------------------------------------------------------- /test/exports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/exports.test.ts -------------------------------------------------------------------------------- /test/integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/integration.spec.ts -------------------------------------------------------------------------------- /test/jest-resolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/jest-resolver.test.ts -------------------------------------------------------------------------------- /test/ts-tests/.gitignore: -------------------------------------------------------------------------------- 1 | fixture.js 2 | -------------------------------------------------------------------------------- /test/ts-tests/fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/ts-tests/fixture.ts -------------------------------------------------------------------------------- /test/ts-tests/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /test/ts-tests/run-tests.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/ts-tests/run-tests.mjs -------------------------------------------------------------------------------- /test/ts-tests/tsconfig.commonjs-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/ts-tests/tsconfig.commonjs-node.json -------------------------------------------------------------------------------- /test/ts-tests/tsconfig.commonjs-node16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/ts-tests/tsconfig.commonjs-node16.json -------------------------------------------------------------------------------- /test/ts-tests/tsconfig.commonjs-nodenext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/ts-tests/tsconfig.commonjs-nodenext.json -------------------------------------------------------------------------------- /test/ts-tests/tsconfig.esnext-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/ts-tests/tsconfig.esnext-node.json -------------------------------------------------------------------------------- /test/ts-tests/tsconfig.node16-node16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/ts-tests/tsconfig.node16-node16.json -------------------------------------------------------------------------------- /test/ts-tests/tsconfig.nodenext-nodenext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/test/ts-tests/tsconfig.nodenext-nodenext.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/bob/HEAD/vite.config.ts --------------------------------------------------------------------------------