I am pretty sure the I2C driver in the ESP8266 Arduino port does not support clock stretch, but it's worth checking if you still have problems with your code. That may have locked up the I2C bus waiting for a response and the WDT tripped.
But most likely only for a certain amount because of watchdog ...
Having had a small look at the library itself (which apparently is only written for the Arduino and not the ESP via ifdefs).
- At what GPIO-pins is the sensor connected?
The library assumes default I2C pins SDA and SCL (UNO: A4/A5, Mega & DUE: 20/21, Leonardo: 2/3), but the ESP doesn't have hardware I2C, so what GPIO-pins is TS using and where did he configure that? - Also by default (the sketch starts the class with an empty ".begin()") the library assumes an I2C address of 0x5A for the sensor: is this correct for the attached sensor or are you actually using a Adafruit board?
@Rerode: please have a look at this library and examples from Maarten Pennings, I'm sure you'll have much more luck with that library instead.