Files
actual/packages/desktop-client/tsconfig.json
Joel Jeremy Marquez 7fb949e9b1 Composite tsconfig
2025-05-02 14:03:54 -07:00

25 lines
565 B
JSON

{
"extends": "../../tsconfig.base.json",
"references": [{ "path": "../loot-core/tsconfig.json" }],
"compilerOptions": {
"paths": {
"@desktop-client/*": ["./src/*"],
"loot-core/*": ["../loot-core/src/*"],
"loot-core/globals": ["../loot-core/globals.d.ts"]
},
"composite": true,
"outDir": "build",
"tsBuildInfoFile": "build/.desktop-client.tsbuildinfo"
},
"exclude": [
"build",
"build-electron",
"build-stats",
"locale",
"logs",
"node_modules",
"playwright-report",
"test-results"
]
}