DefinitelyTyped/types/image-to-base64/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 8f51ec40ba
feat(image-to-base64): new definition (#47581)
Small util to convert url/path based images to bas64 strings
- definition
- tests

https://github.com/renanbastos93/image-to-base64

Thanks!
2020-09-14 16:25:52 -07:00

24 lines
496 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",
"image-to-base64-tests.ts"
]
}