-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
34 lines (34 loc) · 1.28 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"isolatedModules": true,
"importHelpers": true,
"target": "es2022",
"module": "es2022",
"lib": ["es2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@teve/ngxfire": ["lib/src/index.ts"],
"@teve/ngxfire/analytics": ["lib/src/analytics/index.ts"],
"@teve/ngxfire/app": ["lib/src/app/index.ts"],
"@teve/ngxfire/app-check": ["lib/src/app-check/index.ts"],
"@teve/ngxfire/auth": ["lib/src/auth/index.ts"],
"@teve/ngxfire/data-connect": ["lib/src/data-connect/index.ts"],
"@teve/ngxfire/database": ["lib/src/database/index.ts"],
"@teve/ngxfire/firestore": ["lib/src/firestore/index.ts"],
"@teve/ngxfire/functions": ["lib/src/functions/index.ts"],
"@teve/ngxfire/messaging": ["lib/src/messaging/index.ts"],
"@teve/ngxfire/performance": ["lib/src/performance/index.ts"],
"@teve/ngxfire/remote-config": ["lib/src/remote-config/index.ts"],
"@teve/ngxfire/storage": ["lib/src/storage/index.ts"],
"@teve/ngxfire/vertexai": ["lib/src/vertexai/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}