Add oauth2 client

This commit is contained in:
Guilherme Werner 2023-12-01 20:32:36 -03:00
parent e0e549b5dc
commit e51ff1249c
8 changed files with 183 additions and 20 deletions

15
tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "Node",
"esModuleInterop": true,
"declaration": true,
"emitDeclarationOnly": true,
"forceConsistentCasingInFileNames": true,
},
"exclude": [
"build",
"node_modules",
],
}