mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add react-leaflet, required some additional leaflet work * 4 spaces * Fix tests, typescript 2.1 * Fix tslint fails. Have disabled no-empty-interface as things get ugly when trying to be clean for it. * Fix leaflet-geocoder-mapzen * Remove a lot of extra unnecessary interface definitions and be mostly no-empty-interface safe. There are a few small ones I have retained. * Use type instead of another interface
22 lines
461 B
JSON
22 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"jsx": "react",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"react-leaflet-tests.tsx"
|
|
]
|
|
}
|