Files
actual-actualbudget-1/packages/desktop-client/tsconfig.service-worker.json
2025-10-07 12:14:32 -03:00

19 lines
505 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"noEmit": false,
"outDir": "./service-worker",
"target": "ES2022",
"lib": ["ES2022", "WebWorker", "DOM", "DOM.Iterable"],
"module": "ES2022",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"strict": false,
"types": ["vite/client"]
},
"include": ["src/plugin-service-worker.ts"],
"exclude": ["**/*.test.ts", "**/*.spec.ts"]
}