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

17 lines
399 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": {
2022-12-19 08:00:04 -08:00
"@switchboard-xyz/solana.js": ["../../javascript/solana.js"]
2022-05-17 09:42:04 -07:00
}
},
"exclude": ["target"],
2022-12-19 08:00:04 -08:00
"references": [{ "path": "../../javascript/solana.js" }]
2022-05-17 09:42:04 -07:00
}