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

28 lines
763 B
JSON
Raw Normal View History

2022-05-17 09:42:04 -07:00
{
"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": ["../../javascript/switchboard-v2"],
2022-09-28 13:37:22 -07:00
"@switchboard-xyz/sbv2-utils": ["../../javascript/sbv2-utils"],
"@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": "../../javascript/switchboard-v2" },
2022-09-28 13:37:22 -07:00
{ "path": "../../javascript/sbv2-utils" }
]
2022-05-17 09:42:04 -07:00
}