You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/client/web/src/dev.ts

11 lines
222 B
TypeScript

import { isDevelopment, request, version } from 'tailchat-shared';
import { measure } from './utils/measure-helper';
if (isDevelopment === true) {
(window as any).DEBUG = {
request,
version,
measure,
};
}