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

19 lines
551 B
JSON
Raw Normal View History

2022-09-28 13:37:22 -07:00
{
"compilerOptions": {
"types": ["mocha", "chai"],
"typeRoots": ["./node_modules/@types"],
"module": "CommonJS",
"noEmit": true,
"esModuleInterop": true,
"paths": {
"@switchboard-xyz/switchboard-v2": ["../../javascript/switchboard-v2"],
2022-09-28 13:37:22 -07:00
"@switchboard-xyz/sbv2-utils": ["../../javascript/sbv2-utils"]
}
},
"include": ["tests/**/*", "client/**/*", "./target/types/anchor_feed_parser"],
"references": [
{ "path": "../../javascript/switchboard-v2" },
2022-09-28 13:37:22 -07:00
{ "path": "../../javascript/sbv2-utils" }
]
}