Revert "MISC: fix typing conflict between jest and cypress"

This commit is contained in:
hydroflame
2022-05-04 12:14:31 -04:00
committed by GitHub
parent 9818a397bc
commit c5bc47abf0
12 changed files with 25 additions and 19 deletions

View File

@@ -4,15 +4,13 @@
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["es2016", "dom", "es2017.object", "es2019"],
"module": "commonjs",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"target": "es6",
"sourceMap": true,
"strict": true,
"target": "es2019",
"types": ["jest", "node"]
"resolveJsonModule": true,
"types": ["cypress", "@testing-library/cypress", "node"]
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["test/cypress/**/*"]
"exclude": ["node_modules"]
}