Files
cypress/packages/app/tsconfig.json
Mike Plummer 91cbc6741c chore: Update Vite to 4.3.0 (#26553)
Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com>
Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com>
2023-04-27 15:09:31 -05:00

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