forked from elyby/accounts-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 884 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"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"]
}