-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathtsconfig.base.json
49 lines (49 loc) · 2.25 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
{
"compilerOptions": {
"sourceMap": true,
"noImplicitAny": false,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": true,
"importHelpers": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"removeComments": true,
"useDefineForClassFields": false,
"moduleResolution": "node",
"target": "es2020",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["dom", "esnext"],
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@mp/dashboard-merchant-portal-gui": ["vendor/spryker/dashboard-merchant-portal-gui/mp.public-api.ts"],
"@mp/dummy-merchant-portal-gui": ["vendor/spryker/dummy-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"],
"*": ["*"],
"ShopUi/*": ["./vendor/spryker-shop/shop-ui/src/SprykerShop/Yves/ShopUi/Theme/default/*"]
}
},
"include": [
"./vendor/spryker/**/*",
"./vendor/spryker-shop/**/*",
"./vendor/spryker-eco/**/*",
"./src/Pyz/Yves/**/*",
"./src/Pyz/Zed/**/*"
],
"exclude": ["**/node_modules/**", "**/*.spec.ts", "**/*.test.ts", "public", "dist", "**/dist/**"]
}