mathjs/tsconfig.json

25 lines
485 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "ES6",
"paths": {
"mathjs": ["./types/index.d.ts"]
},
"moduleResolution": "nodenext",
"typeRoots": [],
"types": [],
"lib": [
"ES6",
"DOM",
"es2020.bigint"
],
"module": "NodeNext",
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true
}
}