mirror of
https://github.com/openMF/web-app.git
synced 2026-02-06 18:06:49 +00:00
27 lines
462 B
JSON
27 lines
462 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "ES2022",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"outDir": "./dist-playwright",
|
|
"rootDir": "."
|
|
},
|
|
"include": [
|
|
"playwright/**/*.ts",
|
|
"playwright.config.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"src",
|
|
"e2e",
|
|
"cypress"
|
|
]
|
|
}
|