mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-25 14:07:28 +00:00
Use tsconfig file to specify included files. Used implicitly by typedoc. tsconfig files property needs to be overridden in build scripts.
15 lines
338 B
JSON
15 lines
338 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"target": "ES5",
|
|
"module": "commonjs"
|
|
},
|
|
"files": [
|
|
"./src/graph/edge/EdgeDirection.ts",
|
|
"./src/render/RenderMode.ts",
|
|
"./src/viewer/interfaces/IViewerOptions.ts",
|
|
"./src/viewer/ImageSize.ts",
|
|
"./src/viewer/Viewer.ts"
|
|
]
|
|
}
|