DefinitelyTyped/types/react-slider/tsconfig.json
Bjorgvin Baehrenz Thordarson 57922c65b9 Update to support version 1.0 of react-slider (#40413)
* update to support 1.0 version of react-slider

* adding comments from the source is a nice touch

* setting esModuleInterop to false
2019-11-20 12:03:15 -08:00

27 lines
571 B
JSON

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