···83838484## BigInt
85858686-The `@hey-api/transformers` plugin will natively type all BigInts as `bigint` instead of `number`, which can affect arithmetic operations if your application previously used `number`. To force BigInts to be numbers, use the `bigint` configuration option.
8686+The `@hey-api/transformers` plugin will natively type all BigInts as `bigint` instead of `number`, which can affect arithmetic operations if your application previously used `number`. To force BigInts to be numbers, use the `bigInt` configuration option.
87878888```js
8989export default {
···9292 plugins: [
9393 // ...other plugins
9494 {
9595- bigint: true, // [!code ++]
9595+ bigInt: true, // [!code ++]
9696 name: '@hey-api/transformers',
9797 },
9898 ],