signoz/frontend/cypress/tsconfig.json

11 lines
261 B
JSON
Raw Normal View History

{
"extends": "../tsconfig.json",
"compilerOptions": {
"noEmit": true,
// be explicit about types included
// to avoid clashing with Jest types
"types": ["cypress", "@testing-library/cypress"]
},
"include": ["../node_modules/cypress", "./**/*.ts"]
}