2022-01-06 15:06:17 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"dom.iterable",
|
|
|
|
|
"esnext",
|
|
|
|
|
"es5",
|
|
|
|
|
"es2015.collection",
|
|
|
|
|
"es2015.iterable",
|
|
|
|
|
"es2020.string"
|
|
|
|
|
],
|
|
|
|
|
"strict": true,
|
|
|
|
|
"outDir": "./out/js/cypress",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react",
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"importHelpers": true,
|
2023-03-20 17:20:44 +00:00
|
|
|
"typeRoots": ["./typings", "./node_modules/@types"],
|
2022-01-06 15:06:17 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"baseUrl": "./cypress",
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2023-05-11 18:45:06 +00:00
|
|
|
"types": ["cypress", "node", "cypress-real-events", "cypress-tags"]
|
2022-01-06 15:06:17 +00:00
|
|
|
},
|
2023-05-22 12:55:46 +00:00
|
|
|
"include": ["/**/*.ts", "../packages/rts/src/version.js"]
|
2022-01-06 15:06:17 +00:00
|
|
|
}
|