Files
geo/apps/admin-web/tsconfig.json
T

19 lines
420 B
JSON
Raw Normal View History

{
"extends": "../../packages/tsconfig/base.json",
"compilerOptions": {
"types": ["vite/client"],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@geo/shared-types": ["../../packages/shared-types/src/index.ts"],
"@geo/http-client": ["../../packages/http-client/src/index.ts"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.vue",
"vite.config.ts"
]
}