DefinitelyTyped/d3-array/tsconfig.json
denis f928cdd8f3 Make d3-array work with stirctNullChecks
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
2017-02-07 12:36:59 +01:00

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"
]
}