mathjs/tsconfig.json

21 lines
444 B
JSON

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