mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
* 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>
31 lines
979 B
JSON
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"]
|
|
}
|