2022-05-17 09:42:04 -07:00
|
|
|
{
|
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-11-26 14:14:39 -08:00
|
|
|
"@switchboard-xyz/switchboard-v2": ["../../javascript/switchboard-v2"],
|
2022-09-28 13:37:22 -07:00
|
|
|
"@switchboard-xyz/sbv2-utils": ["../../javascript/sbv2-utils"],
|
|
|
|
"@solana/spl-token": ["./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-11-26 14:14:39 -08:00
|
|
|
{ "path": "../../javascript/switchboard-v2" },
|
2022-09-28 13:37:22 -07:00
|
|
|
{ "path": "../../javascript/sbv2-utils" }
|
2022-05-18 14:00:17 -07:00
|
|
|
]
|
2022-05-17 09:42:04 -07:00
|
|
|
}
|