-
Notifications
You must be signed in to change notification settings - Fork 3
/
jsconfig.json
47 lines (47 loc) · 1.6 KB
/
jsconfig.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
{
"compilerOptions": {
"target": "ESNext",
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"moduleResolution": "NodeNext",
"baseUrl": ".",
"paths": {
// Don't modify the below paths without consulting with neetoCompliance team
"assets": ["src/assets"],
"assets/*": ["src/assets/*"],
"components": ["src/components"],
"components/*": ["src/components/*"],
"formikcomponents": ["src/formik"],
"formikcomponents/*": ["src/formik/*"],
"layouts": ["src/layouts"],
"layouts/*": ["src/layouts/*"],
"hooks": ["src/hooks"],
"hooks/*": ["src/hooks/*"],
"utils": ["src/utils"],
"utils/*": ["src/utils/*"],
"src": ["src"],
"src/*": ["src/*"],
"neetoicons": ["node_modules/@bigbinary/neeto-icons"],
"neetoicons/*": ["node_modules/@bigbinary/neeto-icons/*"],
"neetocist": ["node_modules/@bigbinary/neeto-cist"],
"neetocist/*": ["node_modules/@bigbinary/neeto-cist/*"],
// You can add custom project specific paths below this comment
"atoms": ["src/atoms"],
"atoms/*": ["src/atoms/*"],
"constants": ["src/constants"],
"constants/*": ["src/constants/*"],
"managers": ["src/managers"],
"managers/*": ["src/managers/*"]
},
"pretty": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"checkJs": true,
"resolveJsonModule": true,
"jsx": "preserve"
},
"exclude": ["**/node_modules", "**/.*/"],
"include": ["./**/*.js", "./**/*.jsx", "./**/*.d.ts"]
}