DefinitelyTyped/types/react-js-pagination/tsconfig.json
Ernesto 64407a18dd React js pagination (#27022)
* Add type definitions for react-js-pagination

* Add tslint file and remove import statement from index.ts

* Fix tslint errors

* Enable noImplicitThis and strictNullChecks in tsconfig
2018-07-03 09:36:34 -07:00

26 lines
576 B
JSON

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