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>
22 lines
749 B
JSON
22 lines
749 B
JSON
{
|
|
// Typechecks the Playwright layer (every tests/e2e spec + fixtures + the
|
|
// playwright configs), which the main tsconfig deliberately excludes from
|
|
// the app graph. "exclude": [] is required to clear the inherited
|
|
// "tests/e2e" exclusion — same trick tsconfig.build.json uses.
|
|
"extends": "./tsconfig.json",
|
|
// TypeScript 6 defaults "types" to [] instead of every installed @types
|
|
// package, so the Node globals (process, Buffer) used by the Playwright
|
|
// layer must be pulled in explicitly.
|
|
"compilerOptions": {
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"tests/e2e",
|
|
"playwright.config.ts",
|
|
"playwright.config.prod.ts",
|
|
"playwright.config.native.ts",
|
|
"playwright.config.admin.ts"
|
|
],
|
|
"exclude": []
|
|
}
|