mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-17 16:37:43 +00:00
- fix(sync): unblock @sp/sync-core/@sp/sync-providers typecheck under vitest 4 - chore(mobile): pin @capacitor/keyboard to 8.0.1 - chore(mobile): migrate to Capacitor 8 - Merge branch 'feat/issue-7749-3341d1' - docs(plugins): plan for wiring PERSISTED_DATA_CHANGED hook - test(plugins): cover document-mode bundled load and PLUGIN_USER_DATA LWW - chore(plugins): re-bundle document-mode and document Stage A path
18 lines
438 B
JSON
18 lines
438 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"composite": false,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@sp/sync-core": ["../sync-core/src/index.ts"],
|
|
"@sp/sync-providers/log": ["src/log.ts"]
|
|
},
|
|
"rootDir": "..",
|
|
"types": ["vitest", "node"]
|
|
},
|
|
"include": ["src/**/*", "tests/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|