* Migrate cypress tests and commands to TypeScript * Cypress added plugins to tsconfig * Update cypress plugins file to .ts
24 lines
563 B
JSON
24 lines
563 B
JSON
{
|
|
"include": ["./**/*.ts"],
|
|
"exclude": [],
|
|
"compilerOptions": {
|
|
"baseUrl": "cypress",
|
|
"target": "es5",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"types": ["cypress"],
|
|
"lib": ["es2015", "dom"],
|
|
"isolatedModules": false,
|
|
"allowJs": true,
|
|
"noEmit": true
|
|
}
|
|
}
|