forked from TryQuiet/quiet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 822 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
{
"compilerOptions": {
"target": "ES2020",
"baseUrl": ".",
"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/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"
]
}
}