b7ac3c1aeb
This makes us more independent from emscripten libraries, giving us more control on the application lifecycle.
26 lines
470 B
JavaScript
26 lines
470 B
JavaScript
module.exports = {
|
|
"extends": [
|
|
"./.eslintrc.js",
|
|
],
|
|
"globals": {
|
|
"LibraryManager": true,
|
|
"mergeInto": true,
|
|
"autoAddDeps": true,
|
|
"HEAP8": true,
|
|
"HEAPU8": true,
|
|
"HEAP32": true,
|
|
"HEAPF32": true,
|
|
"ERRNO_CODES": true,
|
|
"FS": true,
|
|
"IDBFS": true,
|
|
"GodotOS": true,
|
|
"GodotConfig": true,
|
|
"GodotDisplayListeners": true,
|
|
"GodotRuntime": true,
|
|
"GodotFS": true,
|
|
"IDHandler": true,
|
|
"Browser": true,
|
|
"GL": true,
|
|
"XRWebGLLayer": true,
|
|
},
|
|
};
|