mapillary-js/tsconfig.json
Oscar Lorentzon c38f4e7c4f chore: remove typings dependency
Add types folder as type root.
Declare modules in type def files to be able to compile.
2018-06-11 06:16:58 +00:00

32 lines
683 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"lib": [
"es6",
"dom"
],
"module": "commonjs",
"noImplicitAny": true,
"target": "es5",
"typeRoots": [
"./node_modules/@types",
"./types"
],
"types": [
"@mapbox/polylabel",
"@mapbox/unitbezier",
"earcut",
"falcor",
"falcor-http-datasource",
"jasmine",
"latlon-geohash",
"node",
"pbf",
"rbush",
"three",
"virtual-dom",
"when"
]
}
}