Skip to content

Commit e9db91f

Browse files
authored
fix: #3538 config printing a warning when using { number: 'bigint' } (#3540)
1 parent 20405c7 commit e9db91f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/function/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { clone, deepExtend } from '../../utils/object.js'
22
import { DEFAULT_CONFIG } from '../config.js'
33

44
export const MATRIX_OPTIONS = ['Matrix', 'Array'] // valid values for option matrix
5-
export const NUMBER_OPTIONS = ['number', 'BigNumber', 'Fraction'] // valid values for option number
5+
export const NUMBER_OPTIONS = ['number', 'BigNumber', 'bigint', 'Fraction'] // valid values for option number
66

77
export function configFactory (config, emit) {
88
/**

0 commit comments

Comments
 (0)