mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
* Update oxlint and oxfmt versions, add suppressions for warnings * Add release notes for PR #6560 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
19 lines
505 B
JSON
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"]
|
|
}
|