vue3-realworld-example-app/cypress/e2e/tsconfig.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"
]
}