This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

38
frontend/node_modules/oblivious-set/tsconfig.json generated vendored Normal file
View File

@@ -0,0 +1,38 @@
{
"compilerOptions": {
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"strictNullChecks": true,
"noImplicitAny": false,
"strict": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"suppressImplicitAnyIndexErrors": true,
"downlevelIteration": true,
"declaration": true,
"moduleResolution": "node",
"esModuleInterop": true,
"target": "es5",
"outDir": "./dist/lib",
"lib": [
"es7",
"dom"
]
},
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/node_modules/*",
"dist",
"**.txt",
"**.json"
],
"compileOnSave": false
}