DefinitelyTyped/types/draft-convert/tsconfig.json
Agu Valeriani 6b4ddd0d5d Add draft-convert type definitions. (#36109)
* -updated ts config.

* -Added draft-convert typings with test.

* -Better typing for entity found and applied.
2019-06-11 17:27:01 -07:00

26 lines
538 B
JSON

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