mapillary-js/tsconfig.json
Oscar Lorentzon ecd856099a feat: replace default data provider
Remove Falcor data provider and dependencies.
Add Graph API data provider.
Unit test.
2021-06-07 15:03:11 +02:00

28 lines
573 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"lib": ["es6", "dom"],
"module": "es6",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "build/esm/",
"sourceMap": true,
"target": "es6",
"typeRoots": ["node_modules/@types", "types", "types/@mapbox"],
"types": [
"earcut",
"jest",
"node",
"pbf",
"polylabel",
"rbush",
"s2-geometry",
"three",
"unitbezier",
"virtual-dom"
]
},
"include": ["src/**/*", "test/**/*"]
}