23 lines
439 B
JSON
23 lines
439 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"types": ["node", "@playwright/test"]
|
|
},
|
|
"include": [
|
|
"playwright.config.ts",
|
|
"tests/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"backend",
|
|
"frontend"
|
|
]
|
|
}
|