-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
90 lines (90 loc) · 2.45 KB
/
Copy pathtsconfig.base.json
File metadata and controls
90 lines (90 loc) · 2.45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"compileOnSave": false,
"compilerOptions": {
"incremental": false,
"baseUrl": ".",
"moduleResolution": "node",
"module": "esnext",
"target": "ES2018",
"lib": ["esnext"],
"types": ["mocha", "bun"],
"sourceMap": true,
"declaration": true,
"esModuleInterop": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"paths": {
"@sockethub/data-layer": ["./packages/data-layer/src/index.ts"],
"@sockethub/irc2as": ["./packages/irc2as/src/index.js"],
"@sockethub/logger": ["./packages/logger/src/index.ts"],
"@sockethub/platform-feeds": ["./packages/platform-feeds/src/index.ts"],
"@sockethub/platform-irc": ["./packages/platform-irc/src/index.ts"],
"@sockethub/platform-xmpp": ["./packages/platform-xmpp/src/index.ts"],
"@sockethub/schemas": ["./packages/schemas/src/index.ts"],
"@sockethub/schemas/object-types": [
"./packages/schemas/src/object-types.ts"
],
"@sockethub/server": ["./packages/server/src/index.ts"],
"sockethub": ["./packages/sockethub/bin/sockethub"],
"$components": ["./packages/examples/src/components"],
"$components/*": ["./packages/examples/src/components/*"],
"$stores": ["./packages/examples/src/stores"],
"$stores/*": ["./packages/examples/src/stores/*"],
"$lib": ["./packages/examples/src/lib"],
"$lib/*": ["./packages/examples/src/lib/*"]
}
},
"references": [
{
"path": "packages/sockethub"
},
{
"path": "packages/data-layer"
},
{
"path": "packages/irc2as"
},
{
"path": "packages/logger"
},
{
"path": "packages/platform-dummy"
},
{
"path": "packages/platform-feeds"
},
{
"path": "packages/platform-irc"
},
{
"path": "packages/platform-xmpp"
},
{
"path": "packages/schemas"
},
{
"path": "packages/server"
}
],
"exclude": [
"node_modules",
"dist",
"**/*.integration.ts",
"**/*.test.ts",
"**/*.test.data.ts",
"integration",
"stress-tests",
"packages/examples/build"
]
}