8efe4ec194
- created server configuration - implemented downloading files from nextcloud to a local directory - build of the docker image added to the GutHub workflow - Twake client added - Creating user in Twake Drive from ldap - Ldap client with ldapsearch(TODO make it work with ldapjs) - Jest debug tests
18 lines
408 B
JSON
18 lines
408 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"typeRoots": [
|
|
"./typings",
|
|
"./node_modules/@types/"
|
|
],
|
|
"noImplicitAny": false
|
|
},
|
|
"include": ["src"]
|
|
}
|
|
|