Skip to content
Open
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
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
# rbxts-transform-debug
A debugging transformer for roblox-ts. Contains helper functions for debugging roblox-ts code with debug information attached.

## Installation

1. Add the package to your roblox-ts project:
```sh
npm install rbxts-transform-debug --save-dev
```

2. Configure tsconfig.json
```json
{
"compilerOptions": {
"plugins": [
{
"transform": "rbxts-transform-debug"
}
]
}
}
```

## How it works

Say we have this example code:
Expand Down