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