sbv2-solana/examples/programs/anchor-vrf-parser/tsconfig.json

32 lines
853 B
JSON
Raw Normal View History

2022-05-17 09:42:04 -07:00
{
"extends": "../../../tsconfig.json",
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
},
2022-05-17 09:42:04 -07:00
"compilerOptions": {
"types": ["mocha", "chai", "node"],
2022-05-17 09:42:04 -07:00
"typeRoots": ["./node_modules/@types"],
"module": "commonjs",
"noEmit": true,
"esModuleInterop": true,
"strict": false,
"strictNullChecks": false,
2022-05-17 09:42:04 -07:00
"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"
]
2022-05-17 09:42:04 -07:00
}
},
"include": ["tests/**/*", "./cli.ts", "./client/**/*"],
"exclude": ["target", "lib"],
"references": [
{ "path": "../../../libraries/ts" },
{ "path": "../../../libraries/sbv2-utils" }
]
2022-05-17 09:42:04 -07:00
}