mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 07:34:00 -05:00
338da82961
* feat(frontend-shared): Adding shared components, styles, test tooling, build tooling, and plugins * chore(launchpad): fix build for feat/fronted-shared-infra (#18267) * wip: fix build * fix tests * modify tsconfig * fix typing error * simplify imports Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com>
19 lines
487 B
JSON
19 lines
487 B
JSON
{
|
|
"extends": "../frontend-shared/tsconfig.json",
|
|
"include": [
|
|
"src/**/*.vue",
|
|
"src/**/*.tsx",
|
|
"cypress/**/*.ts",
|
|
"cypress/**/*.tsx",
|
|
"../frontend-shared/src/**/*.vue",
|
|
"../frontend-shared/src/**/*.tsx",
|
|
"../frontend-shared/cypress/**/*.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@cy/i18n": ["../frontend-shared/src/locales/i18n"],
|
|
"@cy/components/*": ["../frontend-shared/src/components/*"],
|
|
"@packages/*": ["../*"]
|
|
}
|
|
}
|
|
} |