-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 1011 Bytes
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 1011 Bytes
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
31
32
33
34
35
36
37
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"strictNullChecks": true,
"declaration": true,
"baseUrl": "./",
"jsx": "react",
"paths": {
"$components/*": ["packages/veda-ui/src/components/*"],
"$styles/*": ["packages/veda-ui/src/styles/*"],
"$utils/*": ["packages/veda-ui/src/utils/*"],
"$types/*": ["packages/veda-ui/src/types/*"],
"$context/*": ["packages/veda-ui/src/context/*"],
"$data-layer/*": ["packages/veda-ui/src/data-layer/*"],
"$uswds": ["packages/veda-ui/src/uswds/"],
"$graphics/*": ["packages/veda-ui/graphics/*"],
"$test/*": ["apps/dashboard-parcel/test/*"],
"$mock/*": ["mock/*"],
"$storybook": ["storybook/*"]
}
},
"exclude": [
".git",
".app-cache",
".parcel-cache",
"parcel-bundle-reports",
".npm",
".npm-tmp",
"dist",
"dist*",
"node_modules",
"**/node_modules/*"
]
}