Add better fallback

This commit is contained in:
Nick Gerleman
2023-10-19 21:04:33 -07:00
parent 4451340610
commit b4960085c6
5 changed files with 43 additions and 10 deletions

View File

@@ -110,7 +110,7 @@ function babelTransformTask(opts) {
env: {
// Trigger distribution-specific Babel transforms
NODE_ENV: 'dist',
}
},
});
};
}

View File

@@ -9,7 +9,7 @@
// @ts-ignore untyped from Emscripten
import loadYoga from '../binaries/web.js';
import wrapAssembly from './wrapAssembly.js';
import wrapAssembly from './wrapAssembly.ts';
export type {
Config,

View File

@@ -17,6 +17,7 @@
}
},
"include": [
"src/**/*"
"src/**/*",
"tests/**/*"
]
}