mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
* 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>
36 lines
943 B
JSON
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"
|
|
]
|
|
}
|