mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-30 03:51:21 -05:00
6fcfc08964
Co-authored-by: Zachary Williams <zachjw34@gmail.com>
32 lines
808 B
JSON
32 lines
808 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",
|
|
"*.d.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/*"],
|
|
"@packages/*": ["../*"]
|
|
},
|
|
"allowJs": true,
|
|
"types": [
|
|
"cypress",
|
|
"cypress-real-events",
|
|
"@intlify/vite-plugin-vue-i18n/client",
|
|
"@testing-library/cypress"
|
|
]
|
|
}
|
|
}
|