mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
* 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
21 lines
438 B
JSON
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
|
|
}
|
|
}
|