-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
33 lines (33 loc) · 948 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
31
32
33
{
"compilerOptions": {
"jsx": "preserve",
"target": "es5",
"module": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"strict": true,
"noEmit": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@dal/*": ["src/dal/*"],
"@dom/*": ["src/dom/*"],
"@lib/*": ["src/lib/*"],
"@assets/*": ["assets/*"],
// atomic design: https://bradfrost.com/blog/post/atomic-web-design/
"@atoms/*": ["src/atoms/*"],
"@molecules/*": ["src/molecules/*"],
"@organisms/*": ["src/organisms/*"],
"@templates/*": ["src/templates/*"],
"@pages/*": ["src/pages/*"],
// TODO: remove shared folder
"@shared/*": ["shared/*"]
},
"types": ["@types/intercom-web"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
},
}