Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/creating-a-new-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ As a rule of thumb, we should follow these two ideas:
2. Instrumentation should follow common patterns for a specific platform. No config is always preferred, but if config
is unavoidable, it should feel as native as possible to users of the given framework.

### Boilerplate Files

Make sure all the boilerplate for your package is set up correctly. This can include, depending on the package:

- `tsconfig.json`, `tsconfig.test.json`, `tsconfig.types.json`, `test/tsconfig.json`
- `oxlintsc.json`
- `rollup.*.config.mjs`
- `LICENSE`
- `README.md`
- `vite.config.ts`

## 1. Browser SDKs

A purely browser SDK generally should cover the following things:
Expand Down
7 changes: 0 additions & 7 deletions tsconfig-templates/README.md

This file was deleted.

9 changes: 0 additions & 9 deletions tsconfig-templates/tsconfig.json

This file was deleted.

12 changes: 0 additions & 12 deletions tsconfig-templates/tsconfig.test.json

This file was deleted.

10 changes: 0 additions & 10 deletions tsconfig-templates/tsconfig.types.json

This file was deleted.

Loading