-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
35 lines (35 loc) · 1.13 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES6",
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@boodi/analytics": ["libs/analytics/src/index.ts"],
"@boodi/auth": ["libs/auth/src/index.ts"],
"@boodi/chat": ["libs/chat/src/index.ts"],
"@boodi/contexts/*": ["libs/contexts/src/*"],
"@boodi/guards/*": ["libs/guards/src/*"],
"@boodi/hooks/*": ["libs/hooks/src/*"],
"@boodi/models/*": ["libs/models/src/*"],
"@boodi/providers/*": ["libs/providers/src/*"],
"@boodi/services/*": ["libs/services/src/*"],
"@boodi/stores/*": ["libs/stores/src/*"],
"@boodi/ui": ["libs/ui/src/index.ts"],
"@boodi/welcome": ["libs/welcome/src/index.ts"]
},
"jsx": "react-jsx"
},
"include": ["apps/**/*.ts", "libs/**/*.ts"],
"exclude": ["node_modules", "tmp"]
}