Files
OwnCord/Client/tauri-client/tsconfig.json
T
Claude d680fe50f3 fix(client): remove deprecated tsconfig baseUrl
TypeScript reports TS5101 for `baseUrl`, which is deprecated and will
stop functioning in TS 7.0. The `paths` entries already use relative
`./src/*` patterns, so `baseUrl` is unnecessary and can be dropped
without changing module resolution.

https://claude.ai/code/session_01RrgSn7AUsGYVPRthnudVMr
2026-04-07 08:23:59 +00:00

47 lines
855 B
JSON

{
"compilerOptions": {
"target": "ES2023",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"lib": [
"ES2023",
"DOM",
"DOM.Iterable"
],
"paths": {
"@lib/*": [
"./src/lib/*"
],
"@stores/*": [
"./src/stores/*"
],
"@components/*": [
"./src/components/*"
],
"@pages/*": [
"./src/pages/*"
],
"@styles/*": [
"./src/styles/*"
]
}
},
"include": [
"src",
"tests"
],
"exclude": [
"tests/e2e"
]
}