2019-12-07 16:58:52 +05:30
|
|
|
{
|
2020-05-24 04:38:24 +05:30
|
|
|
"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
|
2019-12-25 15:31:12 +05:30
|
|
|
},
|
2020-07-24 20:54:55 +05:30
|
|
|
"include": ["@types", "packages", "config", ".storybook"],
|
|
|
|
"exclude": ["packages/app/services/i18n/overrides"]
|
2019-12-07 16:58:52 +05:30
|
|
|
}
|