├── .editorconfig ├── .github ├── renovate.json5 └── workflows │ └── checks.yml ├── .gitignore ├── .yarnrc.yml ├── LICENSE.md ├── README.md ├── bin └── test.ts ├── configure.ts ├── eslint.config.js ├── index.ts ├── package.json ├── providers └── sentry_provider.ts ├── src ├── define_config.ts ├── middleware.ts ├── sentry.ts └── types │ └── main.ts ├── stubs ├── config │ └── sentry.stub └── main.ts ├── tests ├── configure.spec.ts └── fixtures │ ├── base_fixture.ts │ └── configure_fixture.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/README.md -------------------------------------------------------------------------------- /bin/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/bin/test.ts -------------------------------------------------------------------------------- /configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/configure.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/package.json -------------------------------------------------------------------------------- /providers/sentry_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/providers/sentry_provider.ts -------------------------------------------------------------------------------- /src/define_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/src/define_config.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/src/sentry.ts -------------------------------------------------------------------------------- /src/types/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/src/types/main.ts -------------------------------------------------------------------------------- /stubs/config/sentry.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/stubs/config/sentry.stub -------------------------------------------------------------------------------- /stubs/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/stubs/main.ts -------------------------------------------------------------------------------- /tests/configure.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/tests/configure.spec.ts -------------------------------------------------------------------------------- /tests/fixtures/base_fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/tests/fixtures/base_fixture.ts -------------------------------------------------------------------------------- /tests/fixtures/configure_fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/tests/fixtures/configure_fixture.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomainLanz/sentry/HEAD/yarn.lock --------------------------------------------------------------------------------