2019-12-07 16:58:52 +05:30
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-12-08 00:32:00 +05:30
|
|
|
"baseUrl": "packages",
|
2019-12-07 16:58:52 +05:30
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"esModuleInterop": true, // allow importing commonjs exports as default in es imports
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmit": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
// we can not enable json modules, because this will disable
|
|
|
|
// *.intl.json overrides (@see `webpack-loaders.d.ts`)
|
|
|
|
"resolveJsonModule": false,
|
|
|
|
"jsx": "preserve"
|
|
|
|
},
|
2019-12-09 13:17:51 +05:30
|
|
|
"include": ["@types", "packages", "config", ".storybook"]
|
2019-12-07 16:58:52 +05:30
|
|
|
}
|