From 942b3ded752f0f22843abe0aa076378cbbd1dfff Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Wed, 5 Jan 2022 16:49:46 +1100 Subject: [PATCH] Fix Cannot convert BigInt value to a number By not transpiling for older browsers that do not support BigInt. --- examples/web-chat/package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/web-chat/package.json b/examples/web-chat/package.json index c62f118ac3..72b97e9924 100644 --- a/examples/web-chat/package.json +++ b/examples/web-chat/package.json @@ -53,6 +53,8 @@ "browserslist": { "production": [ ">0.2%", + "not ie <= 99", + "not android <= 4.4.4", "not dead", "not op_mini all" ],