mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-09 02:12:51 +00:00
* 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
38 lines
851 B
JSON
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"
|
|
]
|
|
}
|