Files
CRM-Mono/apps/web-e2e/tsconfig.json
Igor Rybakov acd7ea0792
Some checks failed
CI / main (push) Has been cancelled
Init
2026-03-06 21:47:54 +02:00

27 lines
475 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "out-tsc/cypress",
"allowJs": true,
"types": ["cypress", "node"],
"sourceMap": false
},
"include": [
"**/*.ts",
"**/*.js",
"cypress.config.ts",
"**/*.cy.ts",
"**/*.cy.tsx",
"**/*.cy.js",
"**/*.cy.jsx",
"**/*.d.ts"
],
"exclude": [
"out-tsc",
"test-output",
"eslint.config.js",
"eslint.config.cjs",
"eslint.config.mjs"
]
}