-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
91 lines (91 loc) · 3.8 KB
/
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
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
91
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"module": "CommonJS",
"moduleResolution": "node",
"strict": false,
"sourceMap": true,
"importHelpers": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"downlevelIteration": true,
"outDir": "tmp",
"types": ["node"],
"paths": {
"@worldbrain/storex": [
"firebase/functions/external/@worldbrain/storex/ts"
],
"@worldbrain/storex/lib/*": [
"firebase/functions/external/@worldbrain/storex/ts/*"
],
"@worldbrain/storex-backend-dexie": [
"firebase/functions/external/@worldbrain/storex-backend-dexie/ts"
],
"@worldbrain/storex-backend-dexie/lib/*": [
"firebase/functions/external/@worldbrain/storex-backend-dexie/ts/*"
],
"@worldbrain/storex-backend-firestore": [
"firebase/functions/external/@worldbrain/storex-backend-firestore/ts"
],
"@worldbrain/storex-backend-firestore/lib/*": [
"firebase/functions/external/@worldbrain/storex-backend-firestore/ts/*"
],
"@worldbrain/storex-backend-typeorm": [
"firebase/functions/external/@worldbrain/storex-backend-typeorm/ts"
],
"@worldbrain/storex-backend-typeorm/lib/*": [
"firebase/functions/external/@worldbrain/storex-backend-typeorm/ts/*"
],
"@worldbrain/storex-pattern-modules": [
"firebase/functions/external/@worldbrain/storex-pattern-modules/ts"
],
"@worldbrain/storex-pattern-modules/lib/*": [
"firebase/functions/external/@worldbrain/storex-pattern-modules/ts/*"
],
"@worldbrain/memex-url-utils": [
"firebase/functions/external/@worldbrain/memex-url-utils/ts"
],
"@worldbrain/memex-url-utils/lib/*": [
"firebase/functions/external/@worldbrain/memex-url-utils/ts/*"
],
"@worldbrain/memex-common": [
"firebase/functions/external/@worldbrain/memex-common/ts"
],
"@worldbrain/memex-common/lib/*": [
"firebase/functions/external/@worldbrain/memex-common/ts/*"
],
"@worldbrain/memex-storage": [
"firebase/functions/external/@worldbrain/memex-storage/ts"
],
"@worldbrain/memex-storage/lib/*": [
"firebase/functions/external/@worldbrain/memex-storage/ts/*"
],
"@worldbrain/memex-stemmer": [
"firebase/functions/external/@worldbrain/memex-stemmer/ts"
],
"@worldbrain/memex-stemmer/lib/*": [
"firebase/functions/external/@worldbrain/memex-stemmer/ts/*"
],
"@worldbrain/storex-sync": [
"firebase/functions/external/@worldbrain/storex-sync/ts"
],
"@worldbrain/storex-sync/lib/*": [
"firebase/functions/external/@worldbrain/storex-sync/ts/*"
],
"user-logic": ["firebase/functions/external/user-logic/ts"],
"user-logic/lib/*": ["firebase/functions/external/user-logic/ts/*"],
"simple-signalling": [
"firebase/functions/external/simple-signalling/ts"
],
"simple-signalling/lib/*": [
"firebase/functions/external/simple-signalling/ts/*"
]
},
"lib": ["es2021", "dom", "dom.iterable", "esnext.asynciterable"]
},
"include": ["./tools/**/*"],
"exclude": ["node_modules"]
}