fix: #3538 config printing a warning when using { number: 'bigint' } (#3540)

This commit is contained in:
Jos de Jong 2025-09-25 09:04:19 +02:00 committed by GitHub
parent 20405c70a2
commit e9db91fbee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@ import { clone, deepExtend } from '../../utils/object.js'
import { DEFAULT_CONFIG } from '../config.js'
export const MATRIX_OPTIONS = ['Matrix', 'Array'] // valid values for option matrix
export const NUMBER_OPTIONS = ['number', 'BigNumber', 'Fraction'] // valid values for option number
export const NUMBER_OPTIONS = ['number', 'BigNumber', 'bigint', 'Fraction'] // valid values for option number
export function configFactory (config, emit) {
/**