I am trying to do base64 encode in NodeJS using TypeScript.
Following code working fine in JavaScript.
When I am writing same thing in TypeScript and compil
For Angular users:
npm install --save @types/node
tsconfig.app.json
"compilerOptions": { //... "types": ["node"], "typeRoots": ["node_modules/@types"] }