Files
cypress/packages/frontend-shared/tsconfig.json
T
Jennifer Shehane 68c5714f1a chore: Cleanup duplication across tsconfig files in packages (#30764)
* Cleanup duplication across tsconfig files in packages

* empty commit

* Add ts-ignore

* Add ts-ignore
2024-12-16 11:12:40 -05:00

25 lines
588 B
JSON

{
"extends": "../ts/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"lib": ["dom", "ESNext"],
"jsx": "preserve",
"preserveWatchOutput": true,
"noImplicitThis": false,
"noErrorTruncation": true,
"paths": {
"@cy/i18n": ["../frontend-shared/src/locales/i18n"],
"@cy/components/*": ["../frontend-shared/src/components/*"]
},
"types": [
"chrome",
"./vue-shims",
"./vite-env",
"@intlify/unplugin-vue-i18n/messages",
"@testing-library/cypress",
"cypress-real-events",
"cypress"
],
}
}