mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Add tslint.json Set strictNullChecks to true Changes variables names in tests Add accessors functions in tests Add tests for mean, median, quantile, sum, deviation, variance and scan Add undefined to Primitive type Remove useless declarations (number extends Numeric) Add unions of undefined where needed Improve permute with keyof
23 lines
470 B
JSON
23 lines
470 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"d3-array-tests.ts"
|
|
]
|
|
} |