2022-05-17 09:42:04 -07:00
|
|
|
{
|
|
|
|
"extends": "../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2022-05-19 13:49:38 -07:00
|
|
|
"noEmit": false,
|
2022-05-17 09:42:04 -07:00
|
|
|
"outDir": "lib",
|
|
|
|
"rootDir": "src",
|
|
|
|
"strict": false,
|
|
|
|
"importsNotUsedAsValues": "preserve",
|
|
|
|
"noImplicitOverride": false,
|
|
|
|
"noImplicitReturns": false,
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"paths": {
|
2022-05-25 11:38:29 -07:00
|
|
|
"@switchboard-xyz/switchboard-v2": ["../libraries/ts"],
|
2022-05-17 09:42:04 -07:00
|
|
|
"@switchboard-xyz/sbv2-utils": ["../libraries/sbv2-utils"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"types": ["node"],
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules", "bin", "lib", "test/**/*"],
|
|
|
|
"references": [
|
2022-05-25 11:38:29 -07:00
|
|
|
{ "path": "../libraries/ts" },
|
2022-05-17 09:42:04 -07:00
|
|
|
{ "path": "../libraries/sbv2-utils" }
|
|
|
|
]
|
|
|
|
}
|