DefinitelyTyped/types/react-draft-wysiwyg/tsconfig.json
Nathan Zeplowitz 515a3a1f03 [@types/react-draft-wysiwyg] Update Editor Props (#39989)
* [@types/react-draft-wysiwyg] Remove props no longer used by draftJS and add customStyleMap Prop

* Add customStyleMap to editor props
* Remove props for arrow key and escape event handlers that are no longer supported

* [@types/react-draft-wysiwyg] Revert change to typescript version to earlier version that works with changes
2019-11-04 16:23:59 -08:00

32 lines
815 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve"
},
"files": [
"index.d.ts",
"test/basic-content-state-tests.tsx",
"test/basic-controlled-tests.tsx",
"test/basic-tests.tsx",
"test/custom-toolbar-tests.tsx",
"test/focus-blur-callbacks-tests.tsx",
"test/uncontrolled-raw-draft-content-state.tsx",
"test/custom-style-map-tests.tsx"
]
}