20 lines
372 B
JSON
20 lines
372 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"baseUrl": ".",
|
|
"types": ["cypress", "@testing-library/cypress"],
|
|
"isolatedModules": false
|
|
},
|
|
"include": [
|
|
"./**/*",
|
|
"../fixtures/**/*",
|
|
"../support/commands.ts",
|
|
"../support/e2e.ts"
|
|
],
|
|
"exclude": [
|
|
"../../src"
|
|
]
|
|
}
|