我正在使用 Math.js 来解析和评估数学表达式,并遵循https://mathjs.org/docs/custom_bundling.html#numbers-only中的示例,因为我只需要基本的数字支持。 "mathjs": "^8.1.1",
列在我的 package.json 依赖项中。
当我运行下面的示例代码时,我得到Module not found: Error: Can't resolve 'mathjs/number'
:
// use light-weight, numbers only implementations of functions
import { create, all } from 'mathjs/number'
const math = create(all)