mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
23 lines
650 B
JSON
23 lines
650 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,
|
|
"strictNullChecks": true,
|
|
"isolatedModules": true,
|
|
// we can not enable json modules, because this will disable
|
|
// *.intl.json overrides (@see `webpack-loaders.d.ts`)
|
|
"resolveJsonModule": false,
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["@types", "packages", "config", ".storybook"]
|
|
}
|