mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
E2E test improvements: - Increase timeouts for sync button and add task bar visibility checks - Add retry logic for sync button wait in setupSuperSync - Handle dialog close race conditions in save button click - Fix simple counter test to work with collapsible sections and inline forms Build fixes: - Add es2022 lib/target and baseUrl to electron tsconfig - Include window-ea.d.ts for proper type resolution - Add @ts-ignore for import.meta.url in reminder service for Electron build
21 lines
606 B
JSON
21 lines
606 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": ["node_modules/@types"],
|
|
"downlevelIteration": true,
|
|
"lib": ["dom", "es2022"],
|
|
"target": "es2022",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".."
|
|
},
|
|
"include": ["main.ts", "**/*.ts", "../src/app/core/window-ea.d.ts"],
|
|
"exclude": ["../node_modules", "**/*.spec.ts"]
|
|
}
|