-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.test.json
More file actions
18 lines (18 loc) · 897 Bytes
/
tsconfig.test.json
File metadata and controls
18 lines (18 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"extends": "./tsconfig.json",
"compilerOptions": {
"resolveJsonModule": true,
"paths": {
"@algorandfoundation/liquid-client": ["./src/index.ts"],
"@algorandfoundation/liquid-client/encoding": ["./src/encoder.ts"],
"@algorandfoundation/liquid-client/attestation": ["./src/attestation.ts"],
"@algorandfoundation/liquid-client/attestation/fetch": ["./src/attestation.fetch.ts"],
"@algorandfoundation/liquid-client/attestation/encoder": ["./src/attestation.encoder.ts"],
"@algorandfoundation/liquid-client/assertion": ["./src/assertion.ts"],
"@algorandfoundation/liquid-client/assertion/fetch": ["./src/assertion.fetch.ts"],
"@algorandfoundation/liquid-client/assertion/encoder": ["./src/assertion.encoder.ts"]
}
},
"exclude": ["node_modules", "lib", "dist"],
"include": ["./src/*.ts", "./test/*.ts", "__fixtures__/**/*.json"]
}