mathjs/types/tsconfig.json
2022-07-27 15:34:58 +02:00

23 lines
447 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
},
"files": [
"./index.ts"
],
}