Files
DefinitelyTyped/types/topojson/tsconfig.json
denis d3aa7f7578 Improve topojson types
Remove all `any`
Add tests
Activate StrictNullChecks
2018-03-07 23:34:04 +01:00

29 lines
675 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"topojson-tests.ts",
"test/atlas-tests.ts",
"test/client-tests.ts",
"test/server-tests.ts",
"test/simplify-tests.ts",
"test/specification-tests.ts"
]
}