mirror of
https://github.com/mapillary/mapillary-js.git
synced 2025-12-08 17:35:55 +00:00
Remove UnitBezier dependency to simplify code, limit the number of dependencies, and avoid workarounds for unit tests.
27 lines
536 B
JSON
27 lines
536 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": [
|
|
"earcut",
|
|
"jest",
|
|
"node",
|
|
"pbf",
|
|
"polylabel",
|
|
"rbush",
|
|
"s2-geometry",
|
|
"three",
|
|
"virtual-dom"
|
|
]
|
|
},
|
|
"include": ["src/**/*", "test/**/*"]
|
|
}
|