Bumps to 7.3.2 the version of `@babel/plugin-transform-typescript` used by `@babel/preset-typescript`. This allows us to use `@babel/preset-typescript` and pick up at least one useful bug fix (#9095). A similar PR (#9181) was closed as it bumped to a version that didn't have changes. However reading the comments from that PR, I get the sense that bumping the version in this manner should not be necessary, and should be handled by Lerna. Is this correct? Please let me know if I can make any improvements to this PR, the description or if there's anything else I can do to help.
27 lines
645 B
JSON
27 lines
645 B
JSON
{
|
|
"name": "@babel/preset-typescript",
|
|
"version": "7.1.0",
|
|
"description": "Babel preset for TypeScript.",
|
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-preset-typescript",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "lib/index.js",
|
|
"keywords": [
|
|
"babel-preset",
|
|
"typescript"
|
|
],
|
|
"dependencies": {
|
|
"@babel/helper-plugin-utils": "^7.0.0",
|
|
"@babel/plugin-transform-typescript": "^7.3.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/core": "^7.0.0-0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/helper-plugin-test-runner": "^7.0.0"
|
|
}
|
|
}
|