2020-05-08 18:38:33 +03:00
|
|
|
{
|
2023-08-02 08:13:19 +03:00
|
|
|
"extends": "../tsconfig.json",
|
2020-05-08 18:38:33 +03:00
|
|
|
"compilerOptions": {
|
2023-08-02 08:13:19 +03:00
|
|
|
"composite": false,
|
2023-04-25 02:00:04 +03:00
|
|
|
"incremental": true,
|
2023-08-02 08:13:19 +03:00
|
|
|
"isolatedModules": false,
|
|
|
|
"noImplicitAny": false,
|
2023-04-25 02:00:04 +03:00
|
|
|
"target": "ES5",
|
|
|
|
"tsBuildInfoFile": "../node_modules/.cache/tsbuildinfo/cypress", // avoid clobbering the build tsbuildinfo
|
2023-06-08 04:16:57 +03:00
|
|
|
"types": ["cypress", "node"],
|
2020-05-08 18:38:33 +03:00
|
|
|
},
|
2023-04-25 02:00:04 +03:00
|
|
|
"include": ["**/*.ts"],
|
2020-09-24 19:18:57 +03:00
|
|
|
}
|