mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
Update new commerce provider info
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
This commit is contained in:
parent
237a207caf
commit
499b33d91a
@ -15,7 +15,8 @@ A commerce provider is a headless e-commerce platform that integrates with the [
|
|||||||
- Kibo Commerce ([packages/kibocommerce](../kibocommerce))
|
- Kibo Commerce ([packages/kibocommerce](../kibocommerce))
|
||||||
- Commerce.js ([packages/commercejs](../commercejs))
|
- Commerce.js ([packages/commercejs](../commercejs))
|
||||||
- SFCC - SalesForce Cloud Commerce ([packages/sfcc](../sfcc))
|
- SFCC - SalesForce Cloud Commerce ([packages/sfcc](../sfcc))
|
||||||
|
- Mailchimp Open Commerce ([packages/opencommerce](../opencommerce))
|
||||||
|
-
|
||||||
Adding a commerce provider means adding a new folder in `packages` with a folder structure like the next one:
|
Adding a commerce provider means adding a new folder in `packages` with a folder structure like the next one:
|
||||||
|
|
||||||
- `src`
|
- `src`
|
||||||
|
@ -3,7 +3,11 @@
|
|||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"target": "esnext",
|
"target": "esnext",
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"lib": ["dom", "dom.iterable", "esnext"],
|
"lib": [
|
||||||
|
"dom",
|
||||||
|
"dom.iterable",
|
||||||
|
"esnext"
|
||||||
|
],
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
@ -16,17 +20,43 @@
|
|||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
"incremental": true,
|
"incremental": true,
|
||||||
"paths": {
|
"paths": {
|
||||||
"@lib/*": ["lib/*"],
|
"@lib/*": [
|
||||||
"@utils/*": ["utils/*"],
|
"lib/*"
|
||||||
"@config/*": ["config/*"],
|
],
|
||||||
"@assets/*": ["assets/*"],
|
"@utils/*": [
|
||||||
"@components/*": ["components/*"],
|
"utils/*"
|
||||||
"@commerce": ["../packages/commerce/src"],
|
],
|
||||||
"@commerce/*": ["../packages/commerce/src/*"],
|
"@config/*": [
|
||||||
"@framework": ["../packages/opencommerce/src"],
|
"config/*"
|
||||||
"@framework/*": ["../packages/opencommerce/src/*"]
|
],
|
||||||
|
"@assets/*": [
|
||||||
|
"assets/*"
|
||||||
|
],
|
||||||
|
"@components/*": [
|
||||||
|
"components/*"
|
||||||
|
],
|
||||||
|
"@commerce": [
|
||||||
|
"../packages/commerce/src"
|
||||||
|
],
|
||||||
|
"@commerce/*": [
|
||||||
|
"../packages/commerce/src/*"
|
||||||
|
],
|
||||||
|
"@framework": [
|
||||||
|
"../packages/local/src"
|
||||||
|
],
|
||||||
|
"@framework/*": [
|
||||||
|
"../packages/local/src/*"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": ["next-env.d.ts", "**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
|
"include": [
|
||||||
"exclude": ["node_modules"]
|
"next-env.d.ts",
|
||||||
|
"**/*.d.ts",
|
||||||
|
"**/*.ts",
|
||||||
|
"**/*.tsx",
|
||||||
|
"**/*.js"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"node_modules"
|
||||||
|
]
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user