mathjs/tsconfig.json
2022-11-29 14:54:37 +01:00

21 lines
438 B
JSON

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