Files
sdk-js/tsconfig.json
Guilherme Werner ebd04dbc78 Prototype API (#2)
* Add oauth2 client

* Update LICENSE.txt

* Add oauth2 types

* Prepare for publish
2023-12-31 15:15:16 -03:00

30 lines
588 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"declaration": true,
"emitDeclarationOnly": true,
"noImplicitAny": false,
"moduleResolution": "Node",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"outDir": "build",
"lib": [
"ESNext",
"DOM"
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"**/*.ts",
],
"exclude": [
"build",
"node_modules",
],
}