DefinitelyTyped/types/openpgp/tsconfig.json
Errietta Kostala 996c4a2f1f fix message.fromBinary (#31451)
* fix message.fromBinary

* move implementation to ts 3.2 and up only

* ts 3.2 definitions
2018-12-19 13:18:20 -08:00

24 lines
496 B
JSON

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