-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
29 lines (29 loc) · 908 Bytes
/
Copy pathtsconfig.node.json
File metadata and controls
29 lines (29 loc) · 908 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
25
26
27
28
29
{
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "bundler",
"target": "ES2022",
"lib": ["ES2022"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "out/main",
"types": ["node"]
},
"include": [
"electron-vite.config.*",
"src/main/**/*",
"src/preload/**/*",
// Named file, not "src/shared/**/*": the rest of src/shared is browser code
// (passkey-shim reaches for navigator.credentials) and would not compile
// against this project's node-only lib. This module is deliberately free of
// both node and DOM so every target can share the one asset-key contract.
"src/shared/asset-filter-key.ts",
"src/shared/theme-sync-wire.ts",
"src/shared/downloads-wire.ts",
"src/shared/history-wire.ts",
"src/shared/address-input.ts",
"src/shared/currencies.ts"
]
}