The lint tools others have recommended are an excellent idea, and will point you at the problem, but if you have unittests, you can incorporate tests for leaked globals into them.
Just run this before you load your source code,
var globalsBeforeLoad = {};
(function () {
for (var k in this) { globalsBeforeLoad[k] = true; }
})()
and then run this after you load your code
(function () {
var leaked = [];
for (var k in this) {
if (!Object.hasOwnProperty.call(globalsBeforeLoad, k)) {
leaked.push(k);
}
}
if (leaked.length) { alert("You leaked " + leaked.join(", ")); }
})()