fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #3669 from rolego/patch-2

authored by

Lubos and committed by
GitHub
6cf1e34d d95bd328

+2 -2
+2 -2
docs/openapi-ts/plugins/transformers.md
··· 83 83 84 84 ## BigInt 85 85 86 - 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. 86 + 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. 87 87 88 88 ```js 89 89 export default { ··· 92 92 plugins: [ 93 93 // ...other plugins 94 94 { 95 - bigint: true, // [!code ++] 95 + bigInt: true, // [!code ++] 96 96 name: '@hey-api/transformers', 97 97 }, 98 98 ],