Files
cypress/npm/vite-dev-server/tsconfig.build.json
Cacie Prins acba4dc487 chore: vitest project config (#32447)
* 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
2025-09-15 12:53:12 -04:00

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"
]
}