* Remove timers.js from build.js inject.

This commit is contained in:
Derrick Hammer 2023-04-08 23:35:03 -04:00
parent b6f1df264d
commit 17bb912927
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 1 additions and 9 deletions

View File

@ -10,5 +10,5 @@ esbuild.buildSync({
define: {
global: "self",
},
inject: ["timers.js", "polyfill.js"],
inject: ["polyfill.js"],
});

View File

@ -1,8 +0,0 @@
import { setTimeout, setInterval, clearTimeout, clearInterval } from 'timers-browserify'
var scope = typeof self !== "undefined" && self || typeof self !== "undefined" && self || window;
scope.setTimeout = setTimeout;
scope.setInterval = setInterval;
scope.clearTimeout = clearTimeout;
scope.clearInterval = clearInterval;