mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-25 16:39:04 -06:00
* chore: do not rely on transitive dep. from npm/react * chore: bump to vite 3.0.2 * revert * target es6 * remove unused code * update styles * remove ts-ignore * bump to vite 3.0.3
23 lines
415 B
JSON
23 lines
415 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"strict": true,
|
|
"types": [
|
|
"cypress"
|
|
],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": false
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|