terriajs
Version:
Geospatial data visualization platform.
17 lines (16 loc) • 454 B
JSON
// This tsconfig is used to build the model layer only for use in a node.js app.
// Build with ./node_modules/.bin/tsc -p tsconfig-node.json
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"types": [
"terriajs-cesium",
"mapbox__point-geometry",
"terriajs-html2canvas",
"styled-components", // eventually it will be required anyway for SSR.
"react"
]
},
"include": ["./lib/**/*"]
}