-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
42 lines (42 loc) · 868 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
34
35
36
37
38
39
40
41
42
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"noEmit": true,
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2022",
"DOM"
],
"moduleResolution": "Node",
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"bgmc": [
"./packages/bgmc/src/index.ts"
],
"bgmt": [
"./packages/bgmt/src/index.ts"
],
"bgmc/data": [
"./packages/bgmc/src/data.ts"
],
"bgmc/types": [
"./packages/bgmc/src/types/index.ts"
],
"bgmd/types": [
"./packages/bgmd/src/types.ts"
],
"tmdbc": [
"./packages/tmdbc/src/index.ts"
]
}
},
"exclude": [
"node_modules"
]
}