-
Notifications
You must be signed in to change notification settings - Fork 127
/
jsconfig-example.json
139 lines (137 loc) · 5.11 KB
/
jsconfig-example.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// Copy jsconfig-example.json -> jsconfig.json for Intellisense in your IDE
{
"compilerOptions": {
// These compilerOptions settings are required for Intellisense to function
// when importing modules that use the Babel module-resolver plugin
"baseUrl": ".",
"paths": {
"*": ["*", "src/*"],
"~/*": ["./src/*"],
// Add aliases from babel.config.js here if you want Intellisense for them
"@department-of-veterans-affairs/platform-forms-system/*": ["./src/platform/forms-system/src/js/*"],
"@department-of-veterans-affairs/platform-forms/*": ["./src/platform/forms/src/js/*"],
// Uncomment these paths if you want intellisense for them
// "@@profile/*": ["./src/applications/personalization/profile/*"],
// "@@vap-svc/*": ["./src/platform/user/profile/vap-svc/*"],
},
// adding this line allows you to ⌘click JSX imports to open the source
"jsx": "react",
// adding this line allows you to ⌘click JSON imports to open the source
"resolveJsonModule": true
},
"exclude": [
".babelcache",
".devcontainer",
".git",
".github",
".husky",
".vscode",
".yarn",
"build",
"config",
"coverage",
"mochawesome-report",
"node_modules",
"script",
"site",
// Necessary action:
// You must comment out or remove your specific application to get intellisense
// (auto-complete, hover-hints, and go-to-definition behavior).
// If your application is NOT listed here, then you WILL get intellisense.
// The reason we exclude everything by default is because there is a
// limit on the number of files the IDE can index for intellisense.
"src/applications/_mock-form",
"src/applications/_mock-form-ae-design-patterns",
"src/applications/accredited-representative-portal",
"src/applications/appeals",
"src/applications/ask-a-question",
"src/applications/ask-va",
"src/applications/auth",
"src/applications/avs",
"src/applications/burial-poc-v6",
"src/applications/burials-ez",
"src/applications/caregivers",
"src/applications/check-in",
"src/applications/claims-status",
"src/applications/combined-debt-portal",
"src/applications/coronavirus-screener",
"src/applications/dhp-connected-devices",
"src/applications/disability-benefits",
"src/applications/discharge-wizard",
"src/applications/discover-your-benefits",
"src/applications/ds-playground",
"src/applications/ds-v3-playground",
"src/applications/e-folders",
"src/applications/edu-benefits",
"src/applications/education-letters",
"src/applications/enrollment-verification",
"src/applications/ezr",
"src/applications/facility-locator",
"src/applications/financial-status-report",
"src/applications/find-forms",
"src/applications/fry-dea",
"src/applications/gi",
"src/applications/hca",
"src/applications/health-care-supply-reordering",
"src/applications/income-and-asset-statement",
"src/applications/income-limits",
"src/applications/ivc-champva",
"src/applications/letters",
"src/applications/lgy",
"src/applications/login",
"src/applications/messages",
"src/applications/mhv",
"src/applications/mhv-landing-page",
"src/applications/mhv-medical-records",
"src/applications/mhv-medications",
"src/applications/mhv-secure-messaging",
"src/applications/mhv-supply-reordering",
"src/applications/mock-sip-form",
"src/applications/my-education-benefits",
"src/applications/office-directory",
"src/applications/pact-act",
"src/applications/pensions",
"src/applications/personalisation",
"src/applications/post-911-gib-status",
"src/applications/pre-need",
"src/applications/pre-need-integration",
"src/applications/proxy-rewrite",
"src/applications/public-outreach-materials",
"src/applications/rated-disabilities",
"src/applications/representative-appoint",
"src/applications/representative-search",
"src/applications/resources-and-support",
"src/applications/sah",
"src/applications/sco",
"src/applications/search",
"src/applications/sign-in-changes",
"src/applications/simple-forms",
"src/applications/simple-forms-forms-engine",
"src/applications/static-pages",
"src/applications/survivor-dependent-education-benefit",
"src/applications/terms-of-use",
"src/applications/third-party-app-directory",
"src/applications/toe",
"src/applications/travel-pay",
"src/applications/vaos",
"src/applications/verify",
"src/applications/verify-your-enrollment",
"src/applications/veteran-id-card",
"src/applications/virtual-agent",
"src/applications/vre",
"src/applications/yellow-ribbon",
// Necessary action:
// You must comment out or remove any of these if you want intellisense for them.
"src/platform/landing-pages",
"src/platform/mhv",
"src/platform/monitoring",
"src/platform/pdf",
"src/platform/polyfills",
"src/platform/site-wide",
"src/platform/startup",
"src/platform/static-data",
"src/platform/testing",
"src/platform/user",
"src/platform/utilities"
]
}