DefinitelyTyped/react-leaflet/tsconfig.json
Dave Leaver 0c0a06e1c2 Add react-leaflet (#13922)
* 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
2017-01-13 07:24:24 -08:00

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