-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.mp.json
39 lines (39 loc) · 2.11 KB
/
tsconfig.mp.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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"paths": {
"@mp/agent-dashboard-merchant-portal-gui": [
"vendor/spryker/agent-dashboard-merchant-portal-gui/mp.public-api.ts"
],
"@mp/agent-security-merchant-portal-gui": [
"vendor/spryker/agent-security-merchant-portal-gui/mp.public-api.ts"
],
"@mp/dashboard-merchant-portal-gui": ["vendor/spryker/dashboard-merchant-portal-gui/mp.public-api.ts"],
"@mp/gui-table": ["vendor/spryker/gui-table/mp.public-api.ts"],
"@mp/merchant-app-merchant-portal-gui": [
"vendor/spryker/merchant-app-merchant-portal-gui/mp.public-api.ts"
],
"@mp/merchant-profile-merchant-portal-gui": [
"vendor/spryker/merchant-profile-merchant-portal-gui/mp.public-api.ts"
],
"@mp/product-merchant-portal-gui": ["vendor/spryker/product-merchant-portal-gui/mp.public-api.ts"],
"@mp/product-offer-merchant-portal-gui": [
"vendor/spryker/product-offer-merchant-portal-gui/mp.public-api.ts"
],
"@mp/sales-merchant-portal-gui": ["vendor/spryker/sales-merchant-portal-gui/mp.public-api.ts"],
"@mp/security-merchant-portal-gui": ["vendor/spryker/security-merchant-portal-gui/mp.public-api.ts"],
"@mp/user-merchant-portal-gui": ["vendor/spryker/user-merchant-portal-gui/mp.public-api.ts"],
"@mp/zed-ui": ["vendor/spryker/zed-ui/mp.public-api.ts"],
"@mp/*": ["vendor/spryker/*/mp.public-api.ts"],
"@mp/polyfills": ["./vendor/spryker/zed-ui/src/Spryker/Zed/ZedUi/Presentation/Components/mp.polyfills.ts"]
}
},
"include": [
"src/Pyz/Zed/ZedUi/Presentation/Components/main.ts",
"src/Pyz/Zed/ZedUi/Presentation/Components/polyfills.ts",
"src/Pyz/Zed/ZedUi/Presentation/Components/environments/environment.prod.ts",
"vendor/spryker/*/src/Spryker/Zed/*/Presentation/Components/entry.ts",
"src/Pyz/Zed/*/Presentation/Components/entry.ts"
]
}