main

mattermost/focalboard

Last updated at: 29/12/2023 09:46

tsconfig.json

TLDR

This file is a TypeScript configuration file specifically for the Cypress integration testing framework. It extends another TypeScript configuration file and sets some compiler options for the Cypress project.

Methods

N/A

Classes

N/A

{
    "extends": "../tsconfig.json",
    "compilerOptions": {
        "noEmit": true,
        "types": [
            "cypress",
            "cypress-real-events",
            "@testing-library/cypress"
        ]
    },
    "include": [
        "**/*.ts"
    ]
}