Files
actual/packages/desktop-client/tsconfig.json
Julian Dominguez-Schatz a4eb17eff2 Upgrade to Vite 8 (#7184)
* Upgrade to Vite 8

* Add release notes

* PR feedback

* [autofix.ci] apply automated fixes

* PR feedback

* fix: inject process.env

* Restore deleted release note

* Clean up and typecheck

* Fix dev server

* Fix type error

* Fix tests

* PR feedback

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-03-15 23:16:39 +00:00

36 lines
943 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"noEmit": false,
"declaration": true,
"declarationMap": true,
"strict": false, // TODO: fix issues and remove this
"emitDeclarationOnly": true,
"outDir": "build/ts",
"rootDir": ".",
"tsBuildInfoFile": "build/ts/.tsbuildinfo",
"paths": {
// TODO: remove and replace with imports from "@actual-app/core"
"loot-core/*": ["../loot-core/src/*"],
// TODO: move to subpath imports
"@desktop-client/*": ["./src/*"]
},
"plugins": [{ "name": "typescript-strict-plugin", "paths": ["."] }]
},
"references": [
{ "path": "../loot-core" },
{ "path": "../component-library" }
],
"include": ["**/*.ts", "src/**/*.tsx", "src/**/*.js"],
"exclude": [
"node_modules",
"build",
"**/service-worker/**",
"e2e",
"**/*.test.ts",
"**/*.test.tsx",
"**/setupTests.ts"
]
}