-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtsconfig.json
36 lines (36 loc) · 1020 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
{
"compilerOptions": {
"module": "esnext",
"lib": ["dom", "esnext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "ESNext",
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"allowJs": false,
"baseUrl": ".",
"rootDir": "packages",
"typeRoots": ["./node_modules/@types", "./types"],
"paths": {
"@signalwire/js": ["packages/js/src"],
"@signalwire/core": ["packages/core/src"],
"@signalwire/webrtc": ["packages/webrtc/src"],
"@signalwire/node": ["packages/node/src"]
},
"composite": true,
"declarationMap": true,
"strictPropertyInitialization": false,
"useUnknownInCatchVariables": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["packages"]
}