Kamil Wojciechowski

Results 4 comments of Kamil Wojciechowski

it works fine in vue3 project, but for azure functions it wont compile. i also tried with brand new fresh az and it still fails

plain node js project works fine ``` const Web3Token = require("web3-token"); async function execute() { const token = "XXXX"; const { address, body } = await Web3Token.verify(token); console.log(address, body) }...

solution: update tsconfig.json to ``` { "compilerOptions": { "module": "commonjs", "target": "es6", "outDir": "dist", "rootDir": ".", "sourceMap": true, "strict": false, "skipLibCheck": true, } } ``` to be precise: I added...