mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-08 17:12:25 +05:30
208817f69e
* Introduce locale searching
Some locales may be absent or incorrect in default packages so these
should be obtained from other places instead.
* Add fixed Esperanto locale
* Update Esperanto locales
* Redo locale substitution
This reverts commit f2e1047fd8
.
* Include locales in the repository
* Add newline character at the end
27 lines
884 B
JSON
27 lines
884 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "packages",
|
|
"paths": {
|
|
"chalk": ["../@types/chalk.d.ts"]
|
|
},
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"esModuleInterop": true, // allow importing commonjs exports as default in es imports
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": false,
|
|
"isolatedModules": true,
|
|
// we can not enable json modules, because this will disable
|
|
// *.intl.json overrides (@see `webpack-loaders.d.ts`)
|
|
"resolveJsonModule": false,
|
|
"jsx": "preserve",
|
|
"strict": true
|
|
},
|
|
"include": ["@types", "packages", "config", ".storybook"],
|
|
"exclude": ["packages/app/services/i18n/overrides"]
|
|
}
|