2022-02-11 13:56:28 +00:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
2022-12-22 10:49:55 +00:00
|
|
|
"jsx": "react-jsx",
|
2022-02-11 13:56:28 +00:00
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "../../dist/out-tsc",
|
|
|
|
"allowJs": true,
|
2022-11-30 12:32:01 +00:00
|
|
|
"types": ["cypress", "node", "cypress-real-events", "@cypress/grep"],
|
2022-04-12 11:04:26 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitOverride": true,
|
2022-06-01 00:30:02 +00:00
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
2022-04-12 11:04:26 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true
|
2022-02-11 13:56:28 +00:00
|
|
|
},
|
2022-06-10 13:52:39 +00:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.js", "./declaration.d.ts"]
|
2022-02-11 13:56:28 +00:00
|
|
|
}
|