how babel generate typescript definitions
# add this in tsconfig.json
"emitDeclarationOnly": true,
# use this command
"clean": "rimraf esm",
"compiler": "npm run clean && tsc --pretty && babel --extensions '.ts' src -d esm",
"build": "npm run compiler"