Evgeny

Results 6 comments of Evgeny

> Using the desktop app, version 1.7.20 Same problem for me 1.7.20 in corner (1.8.10 in CMD+,) ```{ "editor.cursorShape": "line", "editor.fontFamily": "'Source Code Pro', 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco',...

Looks like Mapbox studio rounds lat/lng when saving/exporting to tileset. This can be significant. Can this be fixed?

Adding `"types": "./index.d.ts"` fixes things for me temporarily. But this should be done on @turf side. ``` "exports": { "./package.json": "./package.json", ".": { "types": "./index.d.ts", "import": "./dist/es/index.js", "require": "./dist/js/index.js" }...

I made a [PR](https://github.com/Turfjs/turf/pull/2400) on this. Pretty straightforward.

I made a temp patch usable through pnpm's `patchedDependencies` and similar [@[email protected]](https://github.com/Turfjs/turf/files/10781728/%40turf__turf%406.5.0.patch)

This is the example found in [npm docs](https://docs.npmjs.com/cli/v9/configuring-npm/package-json#peerdependenciesmeta): ``` { "name": "tea-latte", "version": "1.3.5", "peerDependencies": { "tea": "2.x", "soy-milk": "1.2" }, "peerDependenciesMeta": { "soy-milk": { "optional": true } } }...