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