DefinitelyTyped/types/react-lazy-load-image-component/tsconfig.json
Dan Vanderkam 8432bc2f1a Add typings for react-lazy-load-image-component (#40565)
* Add typings for react-lazy-load-image-component

* Add a package.json

* require TypeScript 3.5

* fix lint issue

* One more author
2019-11-22 09:02:19 -08:00

25 lines
537 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react"
},
"files": [
"index.d.ts",
"react-lazy-load-image-component-tests.tsx"
]
}