* feat: Add support for authentication to the sdk, and plug it in the admin * fix: await fetch before returning in sdk
28 lines
613 B
JSON
28 lines
613 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2021"],
|
|
"target": "es2021",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"module": "ES2020",
|
|
"moduleResolution": "Node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"exclude": [
|
|
"./dist/**/*",
|
|
"./src/**/__tests__",
|
|
"./src/**/__mocks__",
|
|
"node_modules"
|
|
]
|
|
}
|