mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-25 10:19:30 -05:00
acba4dc487
* chore: align on vitest versions across the repo, add project vitest config * Apply suggestion from @cacieprins * Apply suggestion from @cacieprins * Apply suggestion from @cacieprins * Apply suggestion from @cacieprins * Update package.json * lockfile, align vite with vitest * add vitest configs to pkgs that were missing it * update build scripts * fix test pattern for vite-dev-server * correct the path for packages/types tests * downgrade vite-dev-server to vitest 2
33 lines
600 B
JSON
33 lines
600 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"target": "ES2020",
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"importHelpers": true,
|
|
"strict": true,
|
|
"types": [
|
|
"cypress"
|
|
],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"stripInternal": true,
|
|
"ignoreDeprecations": "5.0",
|
|
"importsNotUsedAsValues": "error",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"*.js"
|
|
]
|
|
}
|