forked from afadil/wealthfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (23 loc) · 696 Bytes
/
tsconfig.json
File metadata and controls
24 lines (23 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
// Main app specific settings
"types": ["@tauri-apps/api", "vitest/globals"],
"noEmit": true,
"composite": false, // Main app doesn't need to be composite
// Path mapping for main app
"paths": {
"@/*": ["./src/*"],
"@wealthfolio/addon-sdk": ["packages/addon-sdk/src"],
"@wealthfolio/ui": ["packages/ui/src"],
"@wealthfolio/ui/*": ["packages/ui/src/*"],
"@/components/ui/*": ["packages/ui/src/components/ui/*"]
}
},
"include": ["src"],
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "./packages/ui" },
{ "path": "./packages/addon-sdk" }
]
}