Files
EvoBGP/packages/ui/tsconfig.json
T
DenozordecandCursor 37f28dfcfd
CI / changes (push) Successful in 5s
CI / commitlint (push) Skipped
CI / openapi (push) Successful in 57s
CI / web (push) Successful in 55s
CI / go (push) Successful in 1m14s
CI / bird2 (push) Successful in 14s
CI / release (push) Successful in 4m7s
chore(tsconfig): remove baseUrl from TypeScript configuration files
Removed the "baseUrl" property from tsconfig.base.json, apps/web/tsconfig.json, and packages/ui/tsconfig.json to streamline path resolution. Updated check-openapi-gen.sh to use 'sh' instead of 'bash' for improved compatibility and adjusted the script's error handling.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-31 12:44:31 +07:00

16 lines
395 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"paths": {
"@/*": ["./src/*"],
"@evobgp/ui/components/*": ["./src/components/*"],
"@evobgp/ui/hooks/*": ["./src/hooks/*"],
"@evobgp/ui/lib/utils": ["./src/lib/utils.ts"]
},
"verbatimModuleSyntax": false,
"noUnusedLocals": false,
"noUnusedParameters": false
},
"include": ["src"]
}