DefinitelyTyped/types/babel-plugin-macros/tsconfig.json
Billy Kwok 5018a8e150 add types for babel-plugin-macros (#39151)
* add types for babel-plugin-macros

* rename babel-plugin-macros-test.ts to babel-plugin-macros-tests.ts

* add paths in tsconfig.json

* remove patch version from version string

* remove unnecessary generics

* fix import module name and minimum TypeScript version

* update minimum TypeScript version to 2.9
2019-10-16 11:44:50 -07:00

38 lines
851 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@babel/core": [
"babel__core"
],
"@babel/generator": [
"babel__generator"
],
"@babel/template": [
"babel__template"
],
"@babel/traverse": [
"babel__traverse"
]
}
},
"files": [
"index.d.ts",
"babel-plugin-macros-tests.ts"
]
}