-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
82 lines (82 loc) · 5.1 KB
/
Copy pathtsconfig.base.json
File metadata and controls
82 lines (82 loc) · 5.1 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"strict": false,
"noUncheckedSideEffectImports": false,
"sourceMap": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"moduleResolution": "bundler",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"typeRoots": ["./node_modules/@types", "./node_modules", "./custom-typings"],
"lib": ["es2023", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"@jetstream/acl": ["./libs/auth/acl/src/index.ts"],
"@jetstream/api-config": ["./libs/api-config/src/index.ts"],
"@jetstream/api-types": ["./libs/api-types/src/index.ts"],
"@jetstream/audit-logs": ["./libs/audit-logs/src/index.ts"],
"@jetstream/auth/server": ["./libs/auth/server/src/index.ts"],
"@jetstream/auth/types": ["./libs/auth/types/src/index.ts"],
"@jetstream/connected-ui": ["./libs/connected/connected-ui/src/index.ts"],
"@jetstream/desktop/types": ["./libs/desktop-types/src/index.ts"],
"@jetstream/email": ["./libs/email/src/index.ts"],
"@jetstream/feature/anon-apex": ["./libs/features/anon-apex/src/index.ts"],
"@jetstream/feature/automation-control": ["./libs/features/automation-control/src/index.ts"],
"@jetstream/feature/create-object-and-fields": ["./libs/features/create-object-and-fields/src/index.ts"],
"@jetstream/feature/create-records": ["./libs/features/create-records/src/index.ts"],
"@jetstream/feature/debug-log-viewer": ["./libs/features/debug-log-viewer/src/index.ts"],
"@jetstream/feature/deploy": ["./libs/features/deploy/src/index.ts"],
"@jetstream/feature/formula-evaluator": ["./libs/features/formula-evaluator/src/index.ts"],
"@jetstream/feature/load-records": ["./libs/features/load-records/src/index.ts"],
"@jetstream/feature/load-records-multi-object": ["./libs/features/load-records-multi-object/src/index.ts"],
"@jetstream/feature/manage-permissions": ["./libs/features/manage-permissions/src/index.ts"],
"@jetstream/feature/data-analysis": ["./libs/features/data-analysis/src/index.ts"],
"@jetstream/feature/permission-analysis": ["./libs/features/permission-analysis/src/index.ts"],
"@jetstream/feature/analysis-shared": ["./libs/features/analysis-shared/src/index.ts"],
"@jetstream/feature/orgGroups": ["./libs/features/org-groups/src/index.ts"],
"@jetstream/feature/platform-event-monitor": ["./libs/features/platform-event-monitor/src/index.ts"],
"@jetstream/feature/query": ["./libs/features/query/src/index.ts"],
"@jetstream/feature/record-type-manager": ["./libs/features/record-type-manager/src/index.ts"],
"@jetstream/feature/salesforce-api": ["./libs/features/salesforce-api/src/index.ts"],
"@jetstream/feature/sobject-export": ["./libs/features/sobject-export/src/index.ts"],
"@jetstream/feature/teams": ["./libs/features/teams/src/index.ts"],
"@jetstream/feature/update-records": ["./libs/features/update-records/src/index.ts"],
"@jetstream/icon-factory": ["./libs/icon-factory/src/index.ts"],
"@jetstream/monaco": ["./libs/monaco-configuration/src/index.ts"],
"@jetstream/prisma": ["./libs/prisma/src/index.ts"],
"@jetstream/record-form": ["./libs/shared/ui-record-form/src/index.ts"],
"@jetstream/release-notes": ["./libs/release-notes/src/index.ts"],
"@jetstream/salesforce-api": ["./libs/salesforce-api/src/index.ts"],
"@jetstream/shared/client-logger": ["./libs/shared/client-logger/src/index.ts"],
"@jetstream/shared/constants": ["./libs/shared/constants/src/index.ts"],
"@jetstream/shared/data": ["./libs/shared/data/src/index.ts"],
"@jetstream/shared/data-table": ["./libs/shared/data/src/index.ts"],
"@jetstream/shared/node-utils": ["./libs/shared/node-utils/src/index.ts"],
"@jetstream/shared/ui-router": ["./libs/shared/ui-router/src/index.ts"],
"@jetstream/shared/ui-utils": ["./libs/shared/ui-utils/src/index.ts"],
"@jetstream/shared/utils": ["./libs/shared/utils/src/index.ts"],
"@jetstream/splitjs": ["./libs/splitjs/src/index.ts"],
"@jetstream/test-utils": ["./libs/test-utils/src/index.ts"],
"@jetstream/test/e2e-utils": ["./libs/test/e2e-utils/src/index.ts"],
"@jetstream/types": ["./libs/types/src/index.ts"],
"@jetstream/ui": ["./libs/ui/src/index.ts"],
"@jetstream/ui-core": ["./libs/shared/ui-core/src/index.ts"],
"@jetstream/ui-core/shared": ["./libs/shared/ui-core-shared/src/index.ts"],
"@jetstream/ui/app-state": ["./libs/shared/ui-app-state/src/index.ts"],
"@jetstream/ui/cookie-consent-banner": ["./libs/shared/cookie-consent-banner/src/index.ts"],
"@jetstream/ui/db": ["./libs/shared/ui-db/src/index.ts"],
"@jetstream/salesforce-oauth": ["./libs/auth/salesforce-oauth/src/index.ts"],
"@jetstream/ui-styles/main.css": ["./libs/shared/ui-styles/src/main.css"],
"@jetstream/ui-styles/brand-theme.css": ["./libs/shared/ui-styles/src/brand-theme.css"]
}
},
"exclude": ["node_modules", "tmp"]
}