Type-check Playwright E2E tests in CI

This commit is contained in:
Vsevolod Kukol
2026-09-12 00:43:57 +02:00
parent b16229d1f8
commit f33187efe1
6 changed files with 31 additions and 10 deletions
+9 -7
View File
@@ -1,7 +1,9 @@
{
"extends": "./tsconfig.json",
"include": ["./test/**/*"],
"compilerOptions": {
"module": "commonjs"
}
}
{
"extends": "./tsconfig.json",
"include": ["./test/**/*", "./playwright.config.ts", "./src/**/*.d.ts"],
"compilerOptions": {
"module": "commonjs",
"lib": ["es2022", "dom"],
"types": ["jest", "node"]
}
}