It would be convenient if the VectorTileFeature.toGeoJSON method returned feature's ID.
https://github.com/mapbox/vector-tile-js/blob/master/lib/vectortilefeature.js
...
return {
_id: this._id, // proposal
type: "Feature",
geometry: {
type: type,
coordinates: coords
},
properties: this.properties
};
...