-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
34 lines (34 loc) · 1.35 KB
/
Copy pathtsconfig.base.json
File metadata and controls
34 lines (34 loc) · 1.35 KB
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
30
31
32
33
34
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"@windstack/core": ["./packages/core/dist/index.d.ts"],
"@windstack/evm": ["./packages/evm/dist/index.d.ts"],
"@windstack/solana": ["./packages/solana/dist/index.d.ts"],
"@windstack/vexanium": ["./packages/vexanium/dist/index.d.ts"],
"@windstack/wallet-plugin-wisp": ["./packages/wallet-plugin-wisp/dist/index.d.ts"],
"@windstack/crypto": ["./packages/crypto/dist/index.d.ts"],
"@windstack/abi": ["./packages/abi/dist/index.d.ts"],
"@windstack/rpc": ["./packages/rpc/dist/index.d.ts"],
"@windstack/contract": ["./packages/contract/dist/index.d.ts"],
"@windstack/account": ["./packages/account/dist/index.d.ts"],
"@windstack/antelope": ["./packages/antelope/dist/index.d.ts"],
"@windstack/signing-request": ["./packages/signing-request/dist/index.d.ts"],
"@windstack/session": ["./packages/session/dist/index.d.ts"]
}
}
}