vitesse/cypress/tsconfig.json
2021-11-02 09:45:48 +08:00

14 lines
257 B
JSON

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