Andres Costa

Results 6 issues of Andres Costa

I'm doing this: ```javascript const vector = Vector.create(400, 0); Body.setVelocity(body, vector); const deltaTime = 500; Body.update(body, deltaTime, 1, 1); // body, deltaTime, scaleTime, correction; ``` I'm assuming that passing `500ms`...

I have this function: ```javascript function method(string, options) { // doing things if (typeof(options.value) == 'string') { // doing things } // doing things } ``` This give me a...

When using imports using the `@` alias it's broken because the config is inside `vite/` folder. So this pointing to a wrong path (`./src`): ```js export default defineConfig({ resolve: {...

When using imports using the `@` alias it's broken because the config is inside `vite/` folder. So this pointing to a wrong path (`./src`): ```ts export default defineConfig({ resolve: {...

This PR * Updates the Documentation ## Describe the changes below: Fixing two typedef typo errors

### Bug description In `v2.0` we can have a MapSchema without any `@type` but it's not working for `v3.0`, i know there is not sense to have a Schema if...