-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
tsconfig.base.json
59 lines (59 loc) · 3.44 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["./node_modules/@types", "./custom-typings"],
"lib": ["es2023", "dom", "DOM.Iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@jetstream/api-config": ["libs/api-config/src/index.ts"],
"@jetstream/api-types": ["libs/api-types/src/index.ts"],
"@jetstream/connected-ui": ["libs/connected/connected-ui/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/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/organizations": ["libs/features/organizations/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/salesforce-api": ["libs/features/salesforce-api/src/index.ts"],
"@jetstream/feature/sobject-export": ["libs/features/sobject-export/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/record-form": ["libs/shared/ui-record-form/src/index.ts"],
"@jetstream/salesforce-api": ["libs/salesforce-api/src/index.ts"],
"@jetstream/shared/browser-worker-utils": ["libs/shared/browser-worker-utils/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-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/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/web-extension-utils": ["libs/web-extension-utils/src/index.ts"],
"@jetstream/workspace-plugin": ["tools/workspace-plugin/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}