When compiling my front end application with Vite I'm running into the following error:
✘ [ERROR] Big integer literals are not available in the configured target environment ("chrome87", "edge88", "es2019", "firefox78", "safari13.1")
node_modules/v-money3/dist/v-money3.es.js:137:34:
137 │ __publicField(this, "number", 0n);
╵ ~~
✘ [ERROR] Big integer literals are not available in the configured target environment ("chrome87", "edge88", "es2019", "firefox78", "safari13.1")
node_modules/v-money3/dist/v-money3.es.js:223:41:
223 │ thatNum = thatNumber.getNumber() * 10n ** BigInt(diff);
╵ ~~~
✘ [ERROR] Big integer literals are not available in the configured target environment ("chrome87", "edge88", "es2019", "firefox78", "safari13.1")
node_modules/v-money3/dist/v-money3.es.js:225:35:
225 │ thisNum = this.getNumber() * 10n ** BigInt(diff * -1);
╵ ~~~
When compiling my front end application with Vite I'm running into the following error: