feat(customer-account): payment extension for order page (shares /api/public/payment-info; dual auth)

This commit is contained in:
Gerhard Scheikl
2026-05-09 21:45:27 +02:00
parent 5ac2e09f8c
commit ca769c49a4
6 changed files with 183 additions and 5 deletions
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"jsx": "react-jsx",
"jsxImportSource": "preact",
"strict": true,
"skipLibCheck": true,
"isolatedModules": true,
"noEmit": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"include": ["src/**/*"]
}