diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000000..0a1724965b --- /dev/null +++ b/tsconfig.json @@ -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"] +}