2022-07-26 17:15:24 -04:00
|
|
|
{
|
2022-08-01 22:21:27 -04:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"typeRoots": ["node_modules/@types"],
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"outDir": "build",
|
|
|
|
|
"target": "es2022",
|
|
|
|
|
"module": "es2022",
|
|
|
|
|
"lib": [
|
|
|
|
|
"es2022",
|
|
|
|
|
"dom",
|
|
|
|
|
],
|
|
|
|
|
"types": [
|
|
|
|
|
"leaflet",
|
2023-11-10 00:03:00 -03:00
|
|
|
// "geojson",
|
2022-08-01 22:21:27 -04:00
|
|
|
],
|
|
|
|
|
"moduleResolution": "node"
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"*.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules"
|
|
|
|
|
]
|
2022-07-26 17:15:24 -04:00
|
|
|
}
|