mathjs/tsconfig.json
Jos de Jong 5e439be0a8
Fix #2809: code completion issues in some IDE's (#2812)
* Move types/index.ts to test/typescript-tests/testTypes.ts (WIP)

* Fix the paths for the test:types script

* Move tsconfig.json to the root
2022-10-19 08:23:14 +02: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
}
}