mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-22 18:30:09 +00:00
Resolve merge conflicts: - package.json: use @types/node@^22.19.5 - sync-form.const.ts: keep eslint-disable for naming convention - global-config.effects.ts: remove extra blank line - unlink-all-tasks-on-provider-deletion.effects.ts: keep deprecation notice - auto-fix-typia-errors.ts: keep better-typed getValueByPath - undo-task-delete.meta-reducer.spec.ts: keep getLastDeletePayload import - Accept deletions for files refactored into operation-logs architecture
36 lines
989 B
JSON
36 lines
989 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "./dist/out-tsc",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"skipLibCheck": true,
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitOverride": true,
|
|
"strictPropertyInitialization": true,
|
|
"useDefineForClassFields": false,
|
|
"target": "ES2022",
|
|
"resolveJsonModule": true,
|
|
"typeRoots": ["node_modules/@types"],
|
|
"lib": ["es2022", "dom"],
|
|
"paths": {
|
|
"@super-productivity/plugin-api": ["packages/plugin-api/src/index.ts"],
|
|
"@sp/shared-schema": ["packages/shared-schema/src/index.ts"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"transform": "typia/lib/transform"
|
|
}
|
|
]
|
|
}
|
|
}
|