2022-05-17 09:42:04 -07:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2022-06-29 18:44:33 -07:00
|
|
|
"types": ["mocha", "chai"],
|
2022-05-17 09:42:04 -07:00
|
|
|
"typeRoots": ["./node_modules/@types"],
|
2022-06-29 18:44:33 -07:00
|
|
|
"module": "CommonJS",
|
2022-05-18 14:00:17 -07:00
|
|
|
"noEmit": true,
|
2022-06-29 18:44:33 -07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"strict": false,
|
2022-05-17 09:42:04 -07:00
|
|
|
"paths": {
|
2022-05-18 14:00:17 -07:00
|
|
|
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"],
|
2022-06-29 18:44:33 -07:00
|
|
|
"@switchboard-xyz/sbv2-utils": ["../../libraries/sbv2-utils"],
|
|
|
|
"@solana/spl-token": [
|
|
|
|
"../../node_modules/@solana/spl-token",
|
|
|
|
"./node_modules/@solana/spl-token"
|
|
|
|
]
|
2022-05-17 09:42:04 -07:00
|
|
|
}
|
|
|
|
},
|
2022-06-29 18:44:33 -07:00
|
|
|
"include": [
|
|
|
|
"tests/**/*",
|
|
|
|
"client/**/*",
|
2022-06-29 20:51:29 -07:00
|
|
|
"../../../target/types/anchor_vrf_parser",
|
|
|
|
"../../../target/idl/anchor_vrf_parser"
|
2022-06-29 18:44:33 -07:00
|
|
|
],
|
2022-05-18 14:00:17 -07:00
|
|
|
"references": [
|
|
|
|
{ "path": "../../libraries/ts" },
|
|
|
|
{ "path": "../../libraries/sbv2-utils" }
|
|
|
|
]
|
2022-05-17 09:42:04 -07:00
|
|
|
}
|