mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
This is a first step toward full publication of these functions, that were already being exported by mathjs but had not yet had the associated actions (documentation/available in parser/typed, etc.) Also, makes most of them into TypeScript type guards, and adds Matrix as a constructor type. Resolved #2431. Co-authored-by: Glen Whitney <glen@studioinfinity.org>
20 lines
411 B
JSON
20 lines
411 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"mathjs": ["./index.d.ts"]
|
|
},
|
|
"moduleResolution": "node",
|
|
"typeRoots": [],
|
|
"types": [],
|
|
"lib": ["ES6", "DOM"],
|
|
"module": "ESNEXT",
|
|
"noEmit": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"strictFunctionTypes": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
}
|
|
}
|