Skip to content

Commit

Permalink
Access blocked: Authorization Error-1
Browse files Browse the repository at this point in the history
  • Loading branch information
zobkazi committed May 13, 2024
1 parent c738894 commit 083acba
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions packages/apiGateway/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"compileOnSave": false,
"compilerOptions": {
"target": "ESNext",
"lib": ["ES6"],
"lib": [
"ES6"
],
"allowJs": true,
"module": "CommonJS",
"rootDir": ".",
Expand All @@ -14,15 +16,27 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["./src/types", "./node_modules/@types"],
"typeRoots": [
"./src/types",
"./node_modules/@types"
],
"sourceMap": true,
"types": ["node", "express"],
"types": [
"node",
"express"
],
"noImplicitAny": false,
"baseUrl": "./src",
"paths": {
"@/*": ["*"]
"@/*": [
"*"
]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 083acba

Please sign in to comment.