build(ts): add root tsconfig for Playwright @generated path alias

This commit is contained in:
Fernando Lins
2026-06-26 15:24:01 -03:00
parent 7b11cfcb7c
commit 164bb8bfdb

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"strict": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@generated/*": ["./out/ts/lib/generated/*"]
}
},
"include": ["playwright.config.ts", "ts/tests/e2e/**/*.ts"]
}