working configuration

This commit is contained in:
2026-03-22 19:19:26 +01:00
parent c1a4025697
commit 5b83e1f492
63 changed files with 62182 additions and 19 deletions

View File

@@ -0,0 +1,33 @@
{
"compilerOptions": {
"module": "esnext",
"allowJs": true,
"esModuleInterop": true,
"moduleResolution": "node",
"allowImportingTsExtensions": true,
"noEmit": true,
"noImplicitAny": false,
"paths": {
"@overleaf/access-token-encryptor": [
"./libraries/access-token-encryptor"
],
"@overleaf/fetch-utils": ["./libraries/fetch-utils"],
"@overleaf/logger": ["./libraries/logger"],
"@overleaf/metrics": ["./libraries/metrics"],
"@overleaf/mongo-utils": ["./libraries/mongo-utils"],
"@overleaf/object-persistor": ["./libraries/object-persistor"],
"@overleaf/o-error": ["./libraries/o-error"],
"overleaf-editor-core": ["./libraries/overleaf-editor-core"],
"@overleaf/piece-table": ["./libraries/piece-table"],
"@overleaf/promise-utils": ["./libraries/promise-utils"],
"@overleaf/ranges-tracker": ["./libraries/ranges-tracker"],
"@overleaf/redis-wrapper": ["./libraries/redis-wrapper"],
"@overleaf/settings": ["./libraries/settings"],
"@overleaf/stream-utils": ["./libraries/stream-utils"],
"@overleaf/validation-tools": ["./libraries/validation-tools"]
},
"skipLibCheck": true,
"strict": true,
"target": "ES2022"
}
}