-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
tsconfig.json
48 lines (48 loc) · 992 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
43
44
45
46
47
48
{
"compilerOptions": {
"strict": true,
"target": "esnext",
"downlevelIteration": true,
"esModuleInterop": true,
"module": "nodenext",
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx",
"baseUrl": ".",
"declaration": true,
"emitDeclarationOnly": true,
"composite": true,
"incremental": true,
"paths": {
"waku": ["./packages/waku/src/main.ts"],
"waku/*": ["./packages/waku/src/*.ts"]
},
"noErrorTruncation": true
},
"files": [],
"include": [],
"references": [
// Packages
{
"path": "./packages/waku"
},
{
"path": "./packages/create-waku"
},
{
"path": "./packages/website"
},
// E2E
{
"path": "./tsconfig.e2e.json"
},
// Test
{
"path": "./packages/waku/tests"
}
]
}