DefinitelyTyped/types/react-virtualized/tsconfig.json
Kalle Ott 4ac43f6061 fix for wrong method signature in params of WindowScroller render-prop (#24953)
* typings update to catch up with current version of react-virtualized

* fixed lint errors

* fixed ts version

* fixed void return type of defaultProps functions

* changed interface to type for better consistency

* fixed signature of onChildScroll params in WindowScroller

* Auto stash before merge of "enable-strict-mode" and "master"

* removed unimportant line from test file

* replaced strict with explicit options

* updated TS version

* ts version set to 2.7

* back to ts 2.6

* changed autogenerated relative import to global import
2018-04-14 12:29:21 -07:00

48 lines
1.5 KiB
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6", "dom"],
"jsx": "react",
"baseUrl": "../",
"typeRoots": ["../"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"target": "es5"
},
"files": [
"index.d.ts",
"dist/es/ArrowKeyStepper.d.ts",
"dist/es/AutoSizer.d.ts",
"dist/es/CellMeasurer.d.ts",
"dist/es/Collection.d.ts",
"dist/es/ColumnSizer.d.ts",
"dist/es/Grid.d.ts",
"dist/es/InfiniteLoader.d.ts",
"dist/es/List.d.ts",
"dist/es/Masonry.d.ts",
"dist/es/MultiGrid.d.ts",
"dist/es/ScrollSync.d.ts",
"dist/es/Table.d.ts",
"dist/es/WindowScroller.d.ts",
"dist/commonjs/ArrowKeyStepper.d.ts",
"dist/commonjs/AutoSizer.d.ts",
"dist/commonjs/CellMeasurer.d.ts",
"dist/commonjs/Collection.d.ts",
"dist/commonjs/ColumnSizer.d.ts",
"dist/commonjs/Grid.d.ts",
"dist/commonjs/InfiniteLoader.d.ts",
"dist/commonjs/List.d.ts",
"dist/commonjs/Masonry.d.ts",
"dist/commonjs/MultiGrid.d.ts",
"dist/commonjs/ScrollSync.d.ts",
"dist/commonjs/Table.d.ts",
"dist/commonjs/WindowScroller.d.ts",
"react-virtualized-tests.tsx"
]
}