DefinitelyTyped/types/react-beautiful-dnd/tsconfig.json
Arun George d2359661f7
Add types for react-beautiful-dnd v12 (#42010)
* update to v12 of rbd

* add sensors types

* add package.json and make sure everything is exported

* start resolving pr comments. pushing to make sure pr doesnt get cancelled

* complete copy from https://github.com/atlassian/react-beautiful-dnd/blob/master/src/types.js

* revert back to ts 2.8

* implement omit

* add explicit export to omit function
2020-01-31 14:29:37 -08:00

27 lines
576 B
JSON

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