29 lines
713 B
JSON
29 lines
713 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"compilerOptions": {
|
|
"types": ["mocha", "chai", "node"],
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"lib": ["es2015"],
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"esModuleInterop": true,
|
|
"importsNotUsedAsValues": "remove",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"],
|
|
"@switchboard-xyz/sbv2-utils": ["../../libraries/sbv2-utils"]
|
|
}
|
|
},
|
|
// "include": ["client/**/*"],
|
|
"exclude": ["target", "lib"],
|
|
"references": [
|
|
{ "path": "../../libraries/ts" },
|
|
{ "path": "../../libraries/sbv2-utils" }
|
|
]
|
|
}
|