We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$print
$warn
$print and $warn do not respect configuration, despite being documented as doing so.
With "enabled": false,
"enabled": false
import { $dbg, $print, $warn } from "rbxts-transform-debug"; $print("hi"); $warn("hi"); $dbg("hi");
compiles to
-- Compiled with roblox-ts v2.2.0 print("[src/shared/test.ts:3]", "hi") warn("[src/shared/test.ts:4]", "hi") local _ = nil local _1 = nil return nil
The text was updated successfully, but these errors were encountered:
No branches or pull requests
$print
and$warn
do not respect configuration, despite being documented as doing so.With
"enabled": false
,compiles to
The text was updated successfully, but these errors were encountered: