2025-03-02 21:21:34 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2022",
|
|
|
|
"lib": ["ES2022", "dom"],
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"isolatedModules": false,
|
|
|
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
},
|
2025-03-06 21:09:09 +03:00
|
|
|
"types": ["playwright", "node"]
|
2025-03-02 21:21:34 +03:00
|
|
|
},
|
|
|
|
"include": ["playwright.config.ts", "tests/**/*.ts"]
|
|
|
|
}
|