mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-07 23:40:21 -05:00
3c6a0929d5
* chore: do the minimal to update mobx from 5 to 6 [run ci] chore: update mobx-react from v7 to v9 [run ci] bump cache [run ci] * do not alias mobx or mobx-react. This causes an issue where webpack, in production mode, bundles the cjs production dependency of mobx (mobx.cjs.production.min.js) into cypress_runner.js (in the runner package), but @packages/app (bundled via vite), bundles mobx.esm.js, which is NOT minimized and is expecting the global store/state set by the app to also not be minimized. [run ci] * run update on all machines [run ci] * add changelog entry [run ci]
33 lines
887 B
JSON
33 lines
887 B
JSON
{
|
|
"extends": "../frontend-shared/tsconfig.json",
|
|
"include": [
|
|
"src/**/*.vue",
|
|
"src/**/*.tsx",
|
|
"src/**/*.ts",
|
|
"cypress/**/*.ts",
|
|
"cypress/**/*.tsx",
|
|
"*.d.ts",
|
|
"../frontend-shared/src/**/*.vue",
|
|
"../frontend-shared/src/**/*.tsx",
|
|
"../frontend-shared/cypress/**/*.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"noImplicitThis": true,
|
|
"useDefineForClassFields": true,
|
|
"paths": {
|
|
"@cy/i18n": ["../frontend-shared/src/locales/i18n"],
|
|
"@cy/components/*": ["../frontend-shared/src/components/*"],
|
|
"@cy/gql-components/*": ["../frontend-shared/src/gql-components/*"],
|
|
"@cy/store/*": ["../frontend-shared/src/store/*"],
|
|
"@packages/*": ["../*"]
|
|
},
|
|
"allowJs": true,
|
|
"types": [
|
|
"cypress",
|
|
"cypress-real-events",
|
|
"@intlify/unplugin-vue-i18n/messages",
|
|
"@testing-library/cypress"
|
|
]
|
|
}
|
|
}
|