DefinitelyTyped/types/react-star-rating-component/tsconfig.json
Cody Sand 3e8e17c51b add types for react-star-rating-component (#29713)
* add types for react-star-rating-component

* react-star-rating-component: set TS version to 2.8 to match react.

* use ES-style export and update tsconfig to allow `esModuleInterop`
2018-10-15 13:25:39 -07:00

26 lines
566 B
JSON

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