accounts-frontend/tsconfig.json
kotwys 208817f69e
Implemented ability to override definitions from @formatjs. Added fixed definitions for Esperanto (#26)
* 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
2020-07-24 18:24:55 +03:00

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"]
}