Convert @babel/core to TypeScript (#12929)

Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com>
This commit is contained in:
Bogdan Savluk
2021-03-27 02:03:15 +01:00
committed by Nicolò Ribaudo
parent c8a91d9eef
commit a647b9ea6b
53 changed files with 1265 additions and 1200 deletions

View File

@@ -0,0 +1,17 @@
{
"extends": "../../tsconfig.base.json",
"include": [
"./typings"
],
"references": [
{
"path": "../babel-code-frame"
},
{
"path": "../babel-helper-fixtures"
},
{
"path": "../babel-helper-validator-identifier"
}
]
}

View File

@@ -167,3 +167,8 @@ export interface RecordAndTuplePluginOptions {
export interface FlowPluginOptions {
all?: boolean;
}
export const tokTypes: {
// todo(flow->ts) real token type
[name: string]: any;
};