mapillary-js/tsconfig.json
Oscar Lorentzon acea32b591 refactor: use smooth step instead of unit bezier
Remove UnitBezier dependency to simplify code,
limit the number of dependencies, and avoid
workarounds for unit tests.
2022-01-30 11:41:38 -08:00

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