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

25 lines
633 B
JSON

{
"compilerOptions": {
"types": ["mocha", "chai"],
"typeRoots": ["./node_modules/@types"],
"lib": ["es2019", "dom"],
"moduleResolution": "node",
"module": "commonjs",
"target": "es6",
"esModuleInterop": true,
"paths": {
"@switchboard-xyz/switchboard-v2": ["../../javascript/switchboard-v2"],
"@switchboard-xyz/sbv2-utils": ["../../javascript/sbv2-utils"]
}
},
"include": [
"tests/**/*",
"client/**/*",
"./target/types/anchor_history_parser"
],
"references": [
{ "path": "../../javascript/switchboard-v2" },
{ "path": "../../javascript/sbv2-utils" }
]
}