17 lines
427 B
JSON
17 lines
427 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["cypress", "cypress-wait-until", "cypress-real-events", "@testing-library/cypress", "node"],
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": ["./tests/*"]
|
|
},
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["**/*.*"]
|
|
}
|