Files
OwnCord/Client/tsconfig.json
T
J3vbandClaude 7365a31b45 refactor: flatten Client/tauri-client into Client (B1-1) (#1411)
* refactor: move Client/tauri-client to Client (pure move, no content change)

* refactor: re-point paths after the Client flatten (mechanical, no behaviour change)

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-08-26 08:55:06 +02:00

31 lines
979 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,
"lib": ["ES2023", "DOM", "DOM.Iterable"],
// TypeScript 6 defaults "types" to [] and vitest 4 no longer references
// @types/node itself, so the Node globals (node:fs, __dirname) used by
// unit tests must be pulled in explicitly. tsconfig.build.json resets
// this to [] so app code cannot use Node globals.
"types": ["node"],
"paths": {
"@lib/*": ["./src/lib/*"],
"@stores/*": ["./src/stores/*"],
"@components/*": ["./src/components/*"],
"@pages/*": ["./src/pages/*"],
"@styles/*": ["./src/styles/*"]
}
},
"include": ["src", "tests"],
"exclude": ["tests/e2e"]
}