accounts-frontend/tsconfig.json

23 lines
650 B
JSON
Raw Normal View History

2019-12-07 16:58:52 +05:30
{
"compilerOptions": {
"baseUrl": "packages",
"paths": {
"chalk": ["../@types/chalk.d.ts"]
},
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,
"isolatedModules": true,
2019-12-07 16:58:52 +05:30
// 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
}