Files
cypress/packages/launchpad/tsconfig.json
T
Jessica Sachs 338da82961 feat(frontend-shared): unifying frontend components, build tools, styles, test config, and more. (#18265)
* 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>
2021-09-28 17:48:18 +10:00

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/*": ["../*"]
}
}
}