generated from remarkablemark/npm-package-typescript-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
TypeScript
Mark edited this page Jun 24, 2025
·
1 revision
Create a tsconfig.json inside your cypress folder:
touch cypress/tsconfig.jsonAdd the configuration:
{
"compilerOptions": {
"target": "es2021",
"types": ["cypress", "cy-ai"]
},
"include": ["../node_modules/cypress", "../node_modules/cy-ai", "./**/*.ts"],
"exclude": ["node_modules"]
}