Skip to content

Commit

Permalink
test: bump tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
TakSeBiegam committed Jan 4, 2024
1 parent f4495de commit 6c4db2b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"stripe": "stripe listen --forward-to localhost:3000/payments/stripe"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.485.0",
"@aws-sdk/lib-storage": "^3.485.0",
"@aws-sdk/client-s3": "^3.478.0",
"@aws-sdk/lib-storage": "^3.478.0",
"@vendure/admin-ui-plugin": "2.1.4",
"@vendure/asset-server-plugin": "2.1.4",
"@vendure/core": "2.1.4",
Expand Down
32 changes: 16 additions & 16 deletions src/vendure-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
import { AdminUiPlugin } from "@vendure/admin-ui-plugin";
import { StripePlugin } from "@vendure/payments-plugin/package/stripe";
import path from "path";
import { Przelewy24Plugin } from "./dist";
// import { Przelewy24Plugin } from "./dist";

const IS_DEV = process.env.APP_ENV === "dev";

Expand Down Expand Up @@ -133,15 +133,15 @@ export const config: VendureConfig = {
// reasons.
...(IS_DEV
? {
adminApiPlayground: {
settings: { "request.credentials": "include" },
},
adminApiDebug: true,
shopApiPlayground: {
settings: { "request.credentials": "include" },
},
shopApiDebug: true,
}
adminApiPlayground: {
settings: { "request.credentials": "include" },
},
adminApiDebug: true,
shopApiPlayground: {
settings: { "request.credentials": "include" },
},
shopApiDebug: true,
}
: {}),
},
authOptions: {
Expand Down Expand Up @@ -173,12 +173,12 @@ export const config: VendureConfig = {
customFields: {},
plugins: [
// PaymentPrzelewy24Plugin,
Przelewy24Plugin.init({
envs: {
API_URL: process.env.API_URL || "http://localhost:3000",
STOREFRONT_URL: process.env.STOREFRONT_URL || "http://localhost:8080",
},
}),
// Przelewy24Plugin.init({
// envs: {
// API_URL: process.env.API_URL || "http://localhost:3000",
// STOREFRONT_URL: process.env.STOREFRONT_URL || "http://localhost:8080",
// },
// }),
AssetsPlugin,
// StripePlugin.init({
// storeCustomersInStripe: true,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"skipLibCheck": true,
"outDir": "./dist",
"resolveJsonModule": true,
"baseUrl": "./"
"baseUrl": "./node_modules"
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit 6c4db2b

Please sign in to comment.