DefinitelyTyped/types/uuencode/tsconfig.json
synaestheory ba7e6c806c
Add types/uuencode (#45457)
* Add types/uuencode

* Update maintainer github information

* Update encode/decode parameter to also accept Buffer.

Co-authored-by: Daniel Rosenwasser <DanielRosenwasser@users.noreply.github.com>

* Add node to tsconfig types

* Remove node from types in tsconfig

* Add triple slash reference types comment for node types

* add test for decode with buffer.

* Remove test reference to node type

Co-authored-by: Daniel Rosenwasser <DanielRosenwasser@users.noreply.github.com>
2020-06-21 23:04:15 -07:00

24 lines
489 B
JSON

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