29 lines
572 B
JSON
29 lines
572 B
JSON
{
|
|
"compilerOptions": {
|
|
//"outDir": "./dist",
|
|
|
|
"module": "none",
|
|
"target": "esnext",
|
|
"types": ["d3", "mapbox-gl", "geojson"],
|
|
|
|
"lib": [ "DOM", "esnext" ],
|
|
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"noUncheckedSideEffectImports": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"02-script.ts",
|
|
"MapViewLabelController.ts"
|
|
],
|
|
"exclude": ["../node_modules", "node_modules"]
|
|
}
|