DefinitelyTyped/types/jscodeshift/tsconfig.json

35 lines
1.0 KiB
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"src/core.d.ts",
"src/Collection.d.ts",
"src/collections/JSXElement.d.ts",
"src/collections/Node.d.ts",
"src/collections/VariableDeclarator.d.ts",
"src/template.d.ts",
"test/jscodeshift-tests.ts",
"test/js-transforms/bind-this-to-bind-expression.ts",
"test/js-transforms/call-expression-bind-this-to-arrow-function-expression.ts",
"test/js-transforms/function-expression-to-arrow-function-expression.ts",
"test/js-transforms/props-to-destructuring.ts",
"test/js-transforms/pure-to-composite-component.ts"
]
}