DefinitelyTyped/types/react-draft-wysiwyg/tsconfig.json
imechZhangLY 5af0c27b9f Added type definitions for react-draft-wysiwyg (#29614)
* Added type definitions for react-draft-wysiwyg

* fixed test bug

* Add typescript version

* Enable strictFunctionTypes

* Fix test errors

* Add type void for expression

* Fix error

* Add declare

* Add tslint rules

* Delete namespace

* Add constructor

* Set strictFunctionTypes
2018-10-16 08:44:41 -07:00

30 lines
715 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"
]
}