30 lines
776 B
JSON
30 lines
776 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["mocha", "chai"],
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"module": "CommonJS",
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"strict": false,
|
|
"paths": {
|
|
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"],
|
|
"@switchboard-xyz/sbv2-utils": ["../../libraries/sbv2-utils"],
|
|
"@solana/spl-token": [
|
|
"../../node_modules/@solana/spl-token",
|
|
"./node_modules/@solana/spl-token"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"tests/**/*",
|
|
"client/**/*",
|
|
"../../../target/types/anchor_vrf_parser",
|
|
"../../../target/idl/anchor_vrf_parser"
|
|
],
|
|
"references": [
|
|
{ "path": "../../libraries/ts" },
|
|
{ "path": "../../libraries/sbv2-utils" }
|
|
]
|
|
}
|