-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 1.02 KB
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 1.02 KB
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
// Base tsconfig for all packages
{
"compilerOptions": {
"target": "ES2020",
"baseUrl": ".",
"outDir": "./lib",
"paths": {
"@quiet/identity": ["packages/identity/src/index.ts"],
"@quiet/state-manager": ["packages/state-manager/src/index.ts"],
"@quiet/backend": ["packages/backend/src/index.ts"],
"@quiet/logger": ["packages/logger/src/index.ts"],
"@quiet/common": ["packages/common/src/index.ts"],
"@quiet/node-common": ["packages/node-common/src/index.ts"],
"helia": ["packages/helia/src/index.ts"],
"@quiet/types": ["packages/types/src/index.ts"],
"integration-tests": ["packages/integration-tests/src/index.ts"],
},
"module": "commonjs",
"declaration": true,
"esModuleInterop": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"lib": [
"dom",
"DOM.Iterable",
"ES2020",
"ES2021.String",
"ES2015"
]
}
}