Answers for "build typescript with babel"

0

typescript with babel

npm install --save-dev typescript @babel/core @babel/cli @babel/plugin-proposal-class-properties @babel/preset-env @babel/preset-typescript
Posted by: Guest on May-30-2020
0

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"
Posted by: Guest on August-17-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language