DefinitelyTyped/types/html5-to-pdf/tsconfig.json
Sam Alexander 803703a51f Add types for html5-to-pdf (#34288)
* Add types for html5-to-pdf

* Add typescript version

* Update tsconfig

* Fix lint errors

* Fix tests
2019-03-29 00:37:43 -07:00

27 lines
562 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom",
"es2017"
],
"target": "es2017",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"html5-to-pdf-tests.ts"
]
}