Files
cypress/npm/react/examples/find-webpack/tsconfig.json
Lachlan Miller 03481703c9 fix(cypress/react): add default webpack config path (#16813)
Co-authored-by: Barthélémy Ledoux <bart@cypress.io>
2021-06-04 11:29:45 -05:00

30 lines
597 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": [
"cypress", "./cypress/support"
],
},
"include": [
"src"
]
}