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

19 lines
462 B
JSON
Raw Normal View History

2022-05-17 09:42:04 -07:00
{
"extends": "../../tsconfig.json",
"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": ["../../libraries/ts"]
}
},
// "include": ["oldtests/**/**/*"],
2022-05-17 09:42:04 -07:00
"exclude": ["target"],
"references": [{ "path": "../../libraries/ts" }]
}