0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/console/tsconfig.json
Gao Sun 20418dc4f9
refactor(console,ui,demo-app): fix i18next types (#3743)
* refactor(console,ui,demo-app): fix i18next types

disable allowObjectInHTMLChildren for safer typing. use <DynamicT /> for
all dynamic translations.

* fix(console): i18n key in UserAccountInformation

* refactor(console,ui): update <DynamicT /> and add tests
2023-04-24 16:05:26 +08:00

15 lines
275 B
JSON

{
"extends": "@silverhand/ts-config-react/tsconfig.base",
"compilerOptions": {
"moduleResolution": "bundler",
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"],
"@cloud/*": ["./src/cloud/*"]
}
},
"include": [
"src",
"jest.*.ts"
]
}