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

21 lines
540 B
JSON
Raw Normal View History

2022-05-17 09:42:04 -07:00
{
"compilerOptions": {
"types": ["mocha", "chai"],
"typeRoots": ["./node_modules/@types"],
"lib": ["es2015"],
"module": "commonjs",
"target": "es6",
"esModuleInterop": true,
"noEmit": true,
2022-05-17 09:42:04 -07:00
"paths": {
"@switchboard-xyz/switchboard-v2": ["../../javascript/switchboard-v2"],
"@switchboard-xyz/sbv2-utils": ["../../javascript/sbv2-utils"]
2022-05-17 09:42:04 -07:00
}
},
"exclude": ["target"],
"references": [
{ "path": ".../../javascript/switchboard-v2" },
{ "path": "../../javascript/sbv2-utils" }
]
2022-05-17 09:42:04 -07:00
}