DefinitelyTyped/types/geojson/tsconfig.json
denis 9db7bc6088 Activate Strict Null Checks
Set strictNullChecks to true
Make geometry and property nullable
Add tests
2018-02-27 23:21:24 +01:00

23 lines
487 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"geojson-tests.ts"
]
}