vue3-realworld-example-app/cypress/e2e/tsconfig.json

18 lines
364 B
JSON

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