-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
36 lines (31 loc) · 914 Bytes
/
tsconfig.base.json
File metadata and controls
36 lines (31 loc) · 914 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
{
"compilerOptions": {
/* Project Options */
"incremental": true,
"baseUrl": ".",
"paths": {
"@mini-slack/config/*": ["packages/config/*"],
"@mini-slack/contracts/*": ["packages/contracts/*"],
"@mini-slack/errors/*": ["packages/errors/*"],
"@mini-slack/id-gen/*": ["packages/id-gen/*"],
"@mini-slack/logger/*": ["packages/logger/*"]
},
/* Language and Environment */
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react-jsx",
/* Modules */
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
/* Interop Constraints */
"allowImportingTsExtensions": true,
/* Type Checking */
"strict": true,
"skipLibCheck": true,
/* Emit */
"noEmit": true
},
"exclude": ["node_modules", "dist"]
}