-
Notifications
You must be signed in to change notification settings - Fork 64
/
tsconfig.base.json
46 lines (46 loc) · 1.11 KB
/
tsconfig.base.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
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2022",
"noEmitHelpers": true,
"suppressImplicitAnyIndexErrors": true,
"ignoreDeprecations": "5.0",
"preserveSymlinks": true,
"resolveJsonModule": true,
"exactOptionalPropertyTypes": false,
"paths": {
"@pazznetwork/ngx-chat": [
"libs/ngx-chat/src/index.ts"
],
"@pazznetwork/ngx-chat-shared": [
"libs/ngx-chat-shared/src/index.ts"
],
"@pazznetwork/ngx-xmpp": [
"libs/ngx-xmpp/src/index.ts"
],
"@pazznetwork/strophe-ts": [
"libs/strophe-ts/src/index.ts"
],
"@pazznetwork/xmpp-adapter": [
"libs/xmpp-adapter/src/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp",
".angular",
"karma.conf.js",
"libs/ngx-xmpp/karma.conf.js"
]
}