forked from CMSgov/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 960 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
27
28
29
30
{
"compilerOptions": {
"target": "es2015",
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"skipLibCheck": true,
// Allows `*.example.tsx` files in `docs` to import directly from the design system source root
// TODO: Remove this once we get rid of the example files in favor of Storybook stories
"paths": {
"@design-system": [
"packages/design-system/src",
"packages/ds-medicare-gov/src",
"packages/ds-healthcare-gov/src"
]
}
},
"include": ["packages/**/src/**/*"],
// TODO: Remove this once all our TypeScript definitions are generated from source
"exclude": [
"packages/**/src/types/**/*",
"packages/design-system-docs/src/**/*",
"packages/ds-healthcare-gov/docs/src/**/*",
"packages/ds-medicare-gov/docs/src/**/*"
]
}