commerce/tsconfig.json

32 lines
897 B
JSON
Raw Normal View History

2020-09-30 11:44:38 -05:00
{
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
2020-09-30 11:44:38 -05:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"paths": {
2020-10-01 17:25:48 -03:00
"@lib/*": ["lib/*"],
2021-01-29 11:22:41 -03:00
"@utils/*": ["utils/*"],
2020-11-04 11:50:23 -03:00
"@config/*": ["config/*"],
2021-01-29 11:22:41 -03:00
"@assets/*": ["assets/*"],
2020-10-14 12:47:22 -05:00
"@components/*": ["components/*"],
2020-12-29 20:04:26 -05:00
"@commerce": ["framework/commerce"],
2021-01-29 11:22:41 -03:00
"@commerce/*": ["framework/commerce/*"],
Shopify Provider Updates (#209) * Implement Shopify Provider * Update README.md * Update README.md * normalizations & missing files * Update index.ts * fixes * Update normalize.ts * fix: cart error on first load * shopify checkout redirect & api handler * Update get-checkout-id.ts * Fix: color option * Update normalize.ts * changes * Update next.config.js * start customer auth & signup * Update config.ts * Login, Sign Up, Log Out, and checkout & customer association * Automatic login after sign-up * Update handle-login.ts * changes * Revert "Merge branch 'agnostic' of https://github.com/vercel/commerce into agnostic" This reverts commit 23c8ed7c2d48d30e74ad94216f9910650fadf30c, reversing changes made to bf50965a39ef0b1b956461ebe62070809fbe1d63. * change readme * Revert "Merge branch 'master' of https://github.com/vercel/commerce into agnostic" This reverts commit bf50965a39ef0b1b956461ebe62070809fbe1d63, reversing changes made to 0dad4ddedbf0bff2d0b5800ca469fda0073889ea. * Revert "Revert "Merge branch 'agnostic' of https://github.com/vercel/commerce into agnostic"" This reverts commit c9a43f1bce0572d0eff41f3af893be8bdb00bedd. * align with upstream changes * query all products for vendors & paths, improve search * Update use-search.tsx * fix cart after upstream changes * fixes after upstream changes * Moved handler to each hook * Added initial version of useAddItem * Updated types * Update use-add-item.tsx * Moved auth & cart hooks + several fixes * Updated cart item, fixed deprecations * Update next.config.js * Aligned with upstream changes * Updates * Update next.config.js
2021-02-25 23:05:47 +02:00
"@framework": ["framework/shopify"],
"@framework/*": ["framework/shopify/*"]
2020-09-30 11:44:38 -05:00
}
},
2021-02-12 17:10:17 -03:00
"include": ["next-env.d.ts", "**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
"exclude": ["node_modules"]
2020-09-30 11:44:38 -05:00
}