2026-06-05 14:28:05 +01:00
|
|
|
{
|
|
|
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
|
|
|
"compilerOptions": {
|
2026-06-08 10:32:12 +01:00
|
|
|
"target": "es2024",
|
|
|
|
|
"jsx": "react",
|
|
|
|
|
"lib": ["ESNext", "es2024", "dom", "dom.iterable"],
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"resolveJsonModule": true,
|
2026-06-05 14:28:05 +01:00
|
|
|
"esModuleInterop": true,
|
2026-06-08 10:32:12 +01:00
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"module": "ESNext",
|
2026-06-05 14:28:05 +01:00
|
|
|
"allowImportingTsExtensions": true,
|
2026-06-08 10:32:12 +01:00
|
|
|
"skipLibCheck": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["playwright.config.ts", "playwright"]
|
2026-06-05 14:28:05 +01:00
|
|
|
}
|