feat(map): add event-driven GPS update

This commit is contained in:
Lê Tuấn Anh
2025-11-20 09:05:07 +07:00
parent eed98f7c29
commit dea435a4ec
11 changed files with 333 additions and 159 deletions

View File

@@ -1,3 +1,15 @@
{
"extends": "./src/.umi/tsconfig.json"
"extends": "./src/.umi/tsconfig.json",
"compilerOptions": {
"target": "es2017",
"lib": ["dom", "es2017"],
"module": "esnext",
"moduleResolution": "node",
"jsx": "react-jsx",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src"]
}