1
0
mirror of synced 2026-01-14 12:07:57 -05:00
Files
airbyte/airbyte-webapp-e2e-tests/tsconfig.json
Edmundo Ruiz Ghanem 1c02097582 🪟 🧹 Improve and fix linting in webapp-e2e-tests (#20134)
* Apply similar eslint rules to the webapp project and fix outstanding issues

* add paths to e2e tsconfig (for webstorm)
2022-12-07 15:38:57 -05:00

31 lines
768 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", "node"],
"lib": ["es2015", "dom"],
"isolatedModules": false,
"allowJs": true,
"noEmit": true,
"paths": {
"commands/*": ["commands/*"],
"fixtures/*": ["fixtures/*"],
"integration": ["integration/*"],
"pages/*": ["pages/*"],
"plugins/*": ["plugins/*"]
}
}
}