DefinitelyTyped/types/react-pdf/tsconfig.json
月迷津渡 36e47f5333 Add types for react-pdf (#35317)
* Add types for react-pdf

* [react-pdf] enable strictNullChecks and remove Function types
2019-05-15 09:50:55 -07:00

30 lines
687 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react"
},
"files": [
"index.d.ts",
"dist/Document.d.ts",
"dist/Outline.d.ts",
"dist/Page.d.ts",
"dist/entry.parcel.d.ts",
"dist/entry.webpack.d.ts",
"react-pdf-tests.tsx"
]
}