♻️ (synced-prefs) refactor some SyncedPrefs to string type (#3395)

This commit is contained in:
Matiss Janis Aboltins
2024-09-08 21:42:34 +01:00
committed by GitHub
parent 21dc573f3f
commit 95ed7aaf27
21 changed files with 125 additions and 97 deletions

View File

@@ -31,14 +31,14 @@
"noEmit": true,
"paths": {
// until we turn on composite/references
"loot-core/*": ["./packages/loot-core/src/*"],
"loot-core/*": ["./packages/loot-core/src/*"]
},
"plugins": [
{
"name": "typescript-strict-plugin",
"path": ["./packages"],
},
],
"path": ["./packages"]
}
]
},
"include": ["packages/**/*"],
"exclude": [
@@ -48,10 +48,11 @@
"**/client-build/*",
"**/dist/*",
"**/lib-dist/*",
"**/test-results/*"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS",
},
},
"module": "CommonJS"
}
}
}