mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-13 18:50:18 -06:00
Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com> Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com>
32 lines
850 B
JSON
32 lines
850 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,
|
|
"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"
|
|
]
|
|
}
|
|
}
|