2022-05-17 09:42:04 -07:00
|
|
|
{
|
2022-07-22 11:11:29 -07:00
|
|
|
"extends": "../../../tsconfig.json",
|
2022-07-14 13:58:56 -07:00
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs"
|
|
|
|
}
|
|
|
|
},
|
2022-05-17 09:42:04 -07:00
|
|
|
"compilerOptions": {
|
2022-07-14 13:58:56 -07:00
|
|
|
"types": ["mocha", "chai", "node"],
|
2022-05-17 09:42:04 -07:00
|
|
|
"typeRoots": ["./node_modules/@types"],
|
2022-07-14 13:58:56 -07:00
|
|
|
"module": "commonjs",
|
2022-05-18 14:00:17 -07:00
|
|
|
"noEmit": true,
|
2022-06-29 18:44:33 -07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"strict": false,
|
2022-07-14 13:58:56 -07:00
|
|
|
"strictNullChecks": false,
|
2022-05-17 09:42:04 -07:00
|
|
|
"paths": {
|
2022-07-22 11:11:29 -07:00
|
|
|
"@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"],
|
|
|
|
"@switchboard-xyz/sbv2-utils": ["../../../libraries/sbv2-utils"],
|
2022-06-29 18:44:33 -07:00
|
|
|
"@solana/spl-token": [
|
2022-07-22 11:11:29 -07:00
|
|
|
"../../../node_modules/@solana/spl-token",
|
2022-06-29 18:44:33 -07:00
|
|
|
"./node_modules/@solana/spl-token"
|
|
|
|
]
|
2022-05-17 09:42:04 -07:00
|
|
|
}
|
|
|
|
},
|
2022-07-14 13:58:56 -07:00
|
|
|
"include": ["tests/**/*", "./cli.ts", "./client/**/*"],
|
|
|
|
"exclude": ["target", "lib"],
|
2022-05-18 14:00:17 -07:00
|
|
|
"references": [
|
2022-07-22 11:11:29 -07:00
|
|
|
{ "path": "../../../libraries/ts" },
|
|
|
|
{ "path": "../../../libraries/sbv2-utils" }
|
2022-05-18 14:00:17 -07:00
|
|
|
]
|
2022-05-17 09:42:04 -07:00
|
|
|
}
|